From 89d5265c4367d7c2c5855f4675b4663db83e65b7 Mon Sep 17 00:00:00 2001 From: Aditya Ray <96347576+adi-ray@users.noreply.github.com> Date: Fri, 19 Sep 2025 17:50:58 +0530 Subject: [PATCH] fix: white background when content overflows viewport --- client/components/RootPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/RootPage.tsx b/client/components/RootPage.tsx index 24e35b0dc2..17c5eeb5f6 100644 --- a/client/components/RootPage.tsx +++ b/client/components/RootPage.tsx @@ -7,7 +7,7 @@ interface RootPageProps { export const RootPage = styled.div` min-height: 100vh; - height: ${({ fixedHeight }) => fixedHeight || '100vh'}; + height: ${({ fixedHeight }) => fixedHeight || 'auto'}; display: flex; justify-content: flex-start; flex-direction: column;