From 934264708fa39117685e12e2b4e7416177b22128 Mon Sep 17 00:00:00 2001 From: csawatzky Date: Tue, 3 Feb 2026 13:19:53 -0600 Subject: [PATCH] adding the dhv support check to the fullViewportContainer as well, it is not actually used by anything that i can see, but this will futureproof it in case it is used later --- src/pages/PageContainer.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/PageContainer.tsx b/src/pages/PageContainer.tsx index 938acab..3f0e605 100644 --- a/src/pages/PageContainer.tsx +++ b/src/pages/PageContainer.tsx @@ -31,6 +31,9 @@ const useStyles = makeStyles((theme: Theme) => ({ top: 0, left: 0, height: "100vh", + "@supports (height: 100dvh)": { + height: "100dvh" + }, width: "100vw", backgroundColor: theme.palette.background.default, zIndex: 2000,