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% %sveltekit.head%
</head> </head>
<body class="bg-[#1b1b1c]" data-sveltekit-preload-data="hover"> <body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div> <div style="display: contents">%sveltekit.body%</div>
</body> </body>

View File

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