aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/app.html2
-rw-r--r--src/routes/+layout.svelte10
2 files changed, 5 insertions, 7 deletions
diff --git a/src/app.html b/src/app.html
index aaf7ac2..edf3372 100644
--- a/src/app.html
+++ b/src/app.html
@@ -15,7 +15,7 @@
*/
-->
<!DOCTYPE html>
-<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+<html lang="en" xmlns="http://www.w3.org/1999/xhtml" class='-z-50 bg-black text-white'>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
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>