FIX: Background color fixed

This commit is contained in:
Hayden Hargreaves 2025-02-21 21:51:12 -07:00
parent 60004d3a90
commit 74534239a8
2 changed files with 6 additions and 4 deletions

View File

@ -8,7 +8,7 @@
%sveltekit.head%
</head>
<body class="bg-[#1b1b1c]" data-sveltekit-preload-data="hover">
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>

View File

@ -5,6 +5,8 @@
let { children } = $props();
</script>
<Navbar />
{@render children()}
<Footer />
<div class="bg-[#1b1b1c]">
<Navbar />
{@render children()}
<Footer />
</div>