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

<div class="min-w-screen min-h-screen p-4 relative">
  {@render children()}
</div>