From f00b9f229ac934227ee587786ea34310d055d83a Mon Sep 17 00:00:00 2001 From: arnavsaxena17 Date: Thu, 28 Mar 2024 01:45:29 +0530 Subject: [PATCH] fixed view switcher by changing zindex of TopBar (#4685) --- packages/twenty-front/src/modules/ui/layout/top-bar/TopBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/ui/layout/top-bar/TopBar.tsx b/packages/twenty-front/src/modules/ui/layout/top-bar/TopBar.tsx index 2ec13e4c4..051566012 100644 --- a/packages/twenty-front/src/modules/ui/layout/top-bar/TopBar.tsx +++ b/packages/twenty-front/src/modules/ui/layout/top-bar/TopBar.tsx @@ -27,7 +27,7 @@ const StyledTopBar = styled.div<{ displayBottomBorder: boolean }>` justify-content: space-between; padding-left: ${({ theme }) => theme.spacing(2)}; padding-right: ${({ theme }) => theme.spacing(2)}; - z-index: 5; + z-index: 7; `; const StyledLeftSection = styled.div`