1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00

Fix: overflow sidebar cr banner (#7193)

This commit is contained in:
Mateusz Kwasniewski 2024-05-28 16:46:09 +02:00 committed by GitHub
parent 8e0b75102b
commit 2649c8e7cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,8 +39,7 @@ export const MobileNavigationSidebar: FC<{ onClick: () => void }> = ({
export const StretchContainer = styled(Box)(({ theme }) => ({ export const StretchContainer = styled(Box)(({ theme }) => ({
backgroundColor: theme.palette.background.paper, backgroundColor: theme.palette.background.paper,
padding: theme.spacing(2, 2, 2, 2), padding: theme.spacing(2),
zIndex: theme.zIndex.tooltip,
alignSelf: 'stretch', alignSelf: 'stretch',
})); }));
@ -48,7 +47,7 @@ export const ScreenHeightBox = styled(Box)(({ theme }) => ({
display: 'flex', display: 'flex',
flexDirection: 'column', flexDirection: 'column',
gap: theme.spacing(3), gap: theme.spacing(3),
minHeight: '93vh', zIndex: 1,
})); }));
export const NavigationSidebar = () => { export const NavigationSidebar = () => {