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:
parent
8e0b75102b
commit
2649c8e7cd
@ -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 = () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user