diff options
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/+layout.svelte | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 80bd58c..325cd61 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,12 +1,10 @@ <script lang="ts"> - import "$/lib/console"; - import "../app.css"; - import "$lib/fonts/all-local-after-woff2.css"; + 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" -> +<div class="min-w-screen min-h-screen p-4 relative"> {@render children()} </div> |