This commit is contained in:
Zakhar
2026-09-05 22:48:22 +03:00
parent a5c9c877d3
commit fd62143705
+1 -1
View File
@@ -354,7 +354,7 @@ const Container = styled.main<{$fullHeight: boolean}>`
h1 {
padding-top: 10px;
}
height: ${({ $fullHeight }) => $fullHeight ? 'auto' : '100%'};
height: ${({ $fullHeight }) => $fullHeight ? 'auto' : '100dvh'};
border-radius: ${({ $fullHeight }) => $fullHeight ? '0 0 8px 8px' : '0'};
`)}
`;