Use entire site height by default

This commit is contained in:
Neshura 2023-12-09 18:54:09 +01:00
parent bbe681d6d9
commit 79bdf1bc6c
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -1,12 +1,12 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en" class="dark"> <html lang="en" class="dark h-full">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" /> <link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
%sveltekit.head% %sveltekit.head%
</head> </head>
<body data-sveltekit-preload-data="hover"> <body class="h-full w-full" data-sveltekit-preload-data="hover">
<div style="display: contents;" class="h-screen overflow-hidden contents">%sveltekit.body%</div> %sveltekit.body%
</body> </body>
</html> </html>