Compare commits

..

No commits in common. "e7949b6c5faa675cac570257eeb88c75ba6134aa" and "d1b015f0330d11ad604d8c2ddf1c6de0a638f0cf" have entirely different histories.

2 changed files with 4 additions and 3 deletions

View File

@ -3,14 +3,14 @@
let cursor: HTMLDivElement; let cursor: HTMLDivElement;
type pos = { type position = {
x: number; x: number;
y: number; y: number;
}; };
let disabled = false; let disabled = false;
let rawPosition: pos = { x: 0, y: -100 }; let rawPosition: position = { x: 0, y: -100 };
let position: pos = { x: 0, y: 0 }; let position: position = { x: 0, y: 0 };
onMount(() => { onMount(() => {
window.addEventListener('mousemove', (e) => { window.addEventListener('mousemove', (e) => {

View File

@ -27,6 +27,7 @@
<h1>{data.title}</h1> <h1>{data.title}</h1>
<div class="meta"> <div class="meta">
<span>{data.date}</span> <span>{data.date}</span>
<span />
</div> </div>
</div> </div>
<div class="panel"> <div class="panel">