Modified the root style for overflow auto

This commit is contained in:
Scott Idem
2025-03-16 04:16:11 -04:00
parent b62a267ee8
commit ab055beaff
2 changed files with 4 additions and 3 deletions

View File

@@ -18,7 +18,8 @@
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover" data-theme="my-custom-theme">
<div style="display: contents" class="h-full w-full overflow-hidden">%sveltekit.body%</div>
<body data-sveltekit-preload-data="hover" data-theme="my-custom-theme" class="h-full w-full overflow-auto">
<!-- <div style="display: contents" class="h-full w-full overflow-auto"> % sveltekit.body % </div> -->
<div style="display: contents" class="">%sveltekit.body%</div>
</body>
</html>