Use entire site height by default
This commit is contained in:
parent
bbe681d6d9
commit
79bdf1bc6c
1 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
|
|
Reference in a new issue