Compare commits
2 Commits
d1b015f033
...
e7949b6c5f
Author | SHA1 | Date | |
---|---|---|---|
e7949b6c5f | |||
f8337b37bf |
|
@ -3,14 +3,14 @@
|
|||
|
||||
let cursor: HTMLDivElement;
|
||||
|
||||
type position = {
|
||||
type pos = {
|
||||
x: number;
|
||||
y: number;
|
||||
};
|
||||
|
||||
let disabled = false;
|
||||
let rawPosition: position = { x: 0, y: -100 };
|
||||
let position: position = { x: 0, y: 0 };
|
||||
let rawPosition: pos = { x: 0, y: -100 };
|
||||
let position: pos = { x: 0, y: 0 };
|
||||
|
||||
onMount(() => {
|
||||
window.addEventListener('mousemove', (e) => {
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
<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