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>
<html lang="en" class="dark">
<html lang="en" class="dark h-full">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents;" class="h-screen overflow-hidden contents">%sveltekit.body%</div>
<body class="h-full w-full" data-sveltekit-preload-data="hover">
%sveltekit.body%
</body>
</html>