aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/(app)/+layout.svelte
blob: f560b021b0afc2c1acf0cbd7f0d6167af16209d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<script lang="ts">
  import { S } from '$lib';
  let { children } = $props();
</script>

<div
  class="approot bg-[#101012] text-white w-screen min-h-screen font-sans p-2 md:p-8"
>
  {@render children()}
</div>