From d009cf8383396d27326fce5531520014016b8855 Mon Sep 17 00:00:00 2001 From: csawatzky Date: Tue, 3 Feb 2026 13:16:56 -0600 Subject: [PATCH] use height, not minHeight, as that stopped the ability to scroll at all --- src/pages/PageContainer.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/pages/PageContainer.tsx b/src/pages/PageContainer.tsx index ed78830..938acab 100644 --- a/src/pages/PageContainer.tsx +++ b/src/pages/PageContainer.tsx @@ -13,15 +13,16 @@ const useStyles = makeStyles((theme: Theme) => ({ // [theme.breakpoints.up("sm")]: { // height: `calc(100vh - 64px)` // } - minHeight: `calc(100vh - 112px)`, + minHeight: 0, + height: `calc(100vh - 112px)`, "@supports (height: 100dvh)": { - minHeight: `calc(100dvh - 112px)` + height: `calc(100dvh - 112px)` }, [theme.breakpoints.up("sm")]: { - minHeight: `calc(100vh - 64px)`, + height: `calc(100vh - 64px)`, "@supports (height: 100dvh)": { - minHeight: `calc(100dvh - 64px)` + height: `calc(100dvh - 64px)` } } },