From c336b229424eeb95b29a2d450b298c5d2f44fc01 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 4 Jul 2022 21:49:59 +0200 Subject: Allow dragging --- src/app.css | 8 +++++ src/routes/index.svelte | 82 +++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 88 insertions(+), 2 deletions(-) create mode 100644 src/app.css (limited to 'src') diff --git a/src/app.css b/src/app.css new file mode 100644 index 0000000..a301a08 --- /dev/null +++ b/src/app.css @@ -0,0 +1,8 @@ +* { + font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", + "游明朝体", YuMincho, "Yu Mincho", "MS 明朝", "MS Mincho", + HiraMinProN-W3, "TakaoEx明朝", TakaoExMincho, MotoyaLCedar, + "Droid Sans Japanese", serif; + margin: 0; + padding: 0; +} diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 5982b0a..f2544cf 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -1,2 +1,80 @@ -

Welcome to SvelteKit

-

Visit kit.svelte.dev to read the documentation

+ + +
+
+ +
+ ({ formatCoordinate(x) }, { formatCoordinate(y) }) +
+ + -- cgit