Ensure full viewport height for inner wrapper

This commit is contained in:
shamoon 2025-08-01 08:59:14 -04:00
parent 9417929c99
commit 085d91b3f7
No known key found for this signature in database
2 changed files with 1 additions and 2 deletions

View File

@ -556,7 +556,7 @@ export default function Wrapper({ initialSettings, fallback }) {
id="inner_wrapper"
tabIndex="-1"
className={classNames(
"w-full h-full overflow-auto",
"w-full h-full min-h-screen overflow-auto",
backgroundBlur &&
`backdrop-blur${initialSettings.background.blur?.length ? `-${initialSettings.background.blur}` : ""}`,
backgroundSaturate && `backdrop-saturate-${initialSettings.background.saturate}`,

View File

@ -42,7 +42,6 @@ body {
#page_wrapper {
width: 100%;
min-height: 100%;
margin: 0;
padding: 0;
}