From 085d91b3f7d533281e613739fc4643bd38a75709 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 1 Aug 2025 08:59:14 -0400 Subject: [PATCH] Ensure full viewport height for inner wrapper --- src/pages/index.jsx | 2 +- src/styles/globals.css | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/index.jsx b/src/pages/index.jsx index b72fb330b..4a9fde3a0 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -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}`, diff --git a/src/styles/globals.css b/src/styles/globals.css index 57e1a1800..a638c7c57 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -42,7 +42,6 @@ body { #page_wrapper { width: 100%; - min-height: 100%; margin: 0; padding: 0; }