aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/+layout.svelte
blob: 80bd58c0fb04581ba42e8f5d655fe31cc5df6dce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<script lang="ts">
  import "$/lib/console";
  import "../app.css";
  import "$lib/fonts/all-local-after-woff2.css";
  const { children } = $props();
</script>

<div
  class="w-screen h-screen fixed top-0 left-0 bg-black text-white p-4 overflow-y-auto"
>
  {@render children()}
</div>