Skip to content

Commit 89d5265

Browse files
authored
fix: white background when content overflows viewport
1 parent 06b1586 commit 89d5265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/components/RootPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ interface RootPageProps {
77

88
export const RootPage = styled.div<RootPageProps>`
99
min-height: 100vh;
10-
height: ${({ fixedHeight }) => fixedHeight || '100vh'};
10+
height: ${({ fixedHeight }) => fixedHeight || 'auto'};
1111
display: flex;
1212
justify-content: flex-start;
1313
flex-direction: column;

0 commit comments

Comments
 (0)