Compare commits

..

2 Commits

Author SHA1 Message Date
e7949b6c5f fix: declared type name 2024-08-26 19:12:42 +09:00
f8337b37bf fix: Remove empty span tag in error page 2024-08-26 19:11:24 +09:00
2 changed files with 3 additions and 4 deletions

View File

@ -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) => {

View File

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