feat: add cursor settings, enhance setup wizard and loading animations

This commit is contained in:
2025-07-01 14:13:40 +02:00
parent ba211641a6
commit 50f6812054
10 changed files with 374 additions and 130 deletions

View File

@@ -1,7 +1,12 @@
<script lang="ts">
import { current_view } from '@/global';
import { fade } from 'svelte/transition';
const View = $derived($current_view);
</script>
<View />
{#key View}
<div in:fade={{ duration: 300 }}>
<View />
</div>
{/key}