From 2649c8e7cd7832c56ffe79ef8c96c069bb3dd92d Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Tue, 28 May 2024 16:46:09 +0200 Subject: [PATCH] Fix: overflow sidebar cr banner (#7193) --- .../MainLayout/NavigationSidebar/NavigationSidebar.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/src/component/layout/MainLayout/NavigationSidebar/NavigationSidebar.tsx b/frontend/src/component/layout/MainLayout/NavigationSidebar/NavigationSidebar.tsx index b52f3f9cff..b9649a023f 100644 --- a/frontend/src/component/layout/MainLayout/NavigationSidebar/NavigationSidebar.tsx +++ b/frontend/src/component/layout/MainLayout/NavigationSidebar/NavigationSidebar.tsx @@ -39,8 +39,7 @@ export const MobileNavigationSidebar: FC<{ onClick: () => void }> = ({ export const StretchContainer = styled(Box)(({ theme }) => ({ backgroundColor: theme.palette.background.paper, - padding: theme.spacing(2, 2, 2, 2), - zIndex: theme.zIndex.tooltip, + padding: theme.spacing(2), alignSelf: 'stretch', })); @@ -48,7 +47,7 @@ export const ScreenHeightBox = styled(Box)(({ theme }) => ({ display: 'flex', flexDirection: 'column', gap: theme.spacing(3), - minHeight: '93vh', + zIndex: 1, })); export const NavigationSidebar = () => {