Compare commits
No commits in common. "e7949b6c5faa675cac570257eeb88c75ba6134aa" and "d1b015f0330d11ad604d8c2ddf1c6de0a638f0cf" have entirely different histories.
e7949b6c5f
...
d1b015f033
|
@ -3,14 +3,14 @@
|
|||
|
||||
let cursor: HTMLDivElement;
|
||||
|
||||
type pos = {
|
||||
type position = {
|
||||
x: number;
|
||||
y: number;
|
||||
};
|
||||
|
||||
let disabled = false;
|
||||
let rawPosition: pos = { x: 0, y: -100 };
|
||||
let position: pos = { x: 0, y: 0 };
|
||||
let rawPosition: position = { x: 0, y: -100 };
|
||||
let position: position = { x: 0, y: 0 };
|
||||
|
||||
onMount(() => {
|
||||
window.addEventListener('mousemove', (e) => {
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
<h1>{data.title}</h1>
|
||||
<div class="meta">
|
||||
<span>{data.date}</span>
|
||||
<span />
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel">
|
||||
|
|
Loading…
Reference in New Issue
Block a user