Compare commits

..

No commits in common. "29888092983d5070f81be6cf308e7e0c90f60ef0" and "1bfb7018726d749f1ed97462eb3582b2271b0709" have entirely different histories.

5 changed files with 10 additions and 49 deletions

View file

@ -1,15 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
%sveltekit.head%
</head>
<body class="bg-white dark:bg-zinc-900" data-sveltekit-preload-data="hover">
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

View file

@ -1,15 +0,0 @@
<script lang="ts">
export let href: string;
export let width = 48;
export let color = 'bg-zinc-100 hover:bg-zinc-300 dark:bg-zinc-600 dark:hover:bg-zinc-800';
export let className = '';
export let onClick: () => void;
</script>
<a on:click={onClick} {href}>
<div
class="transition-transform ease-[cubic-bezier(.69,.58,.32,1.69)] hover:scale-105 p-2 m-2 text-lg rounded-2xl w-{width} {color} {className}"
>
<slot />
</div>
</a>

View file

@ -1,9 +1,5 @@
<script>
import '../app.css';
import Menu from '$lib/components/Menu.svelte';
</script>
<div class="text-black dark:text-white flex flex-col">
<Menu />
<slot />
</div>

View file

@ -1,18 +1 @@
<script>
import Button from '$lib/components/buttons/Button.svelte';
let count = 0;
let text = `Clicked ${count} ${count === 1 ? 'time' : 'times'}`;
function handleClick() {
count += 1;
text = `Clicked ${count} ${count === 1 ? 'time' : 'times'}`;
}
</script>
<svelte:head>
<title>AnoPaper main page</title>
</svelte:head>
<h1 class="text-3xl font-bold underline">AnoPaper!</h1>
<Button onClick={handleClick} href="#">{text}</Button>