From 8501375e70e6706183c8e7b69a1408c8c5d35070 Mon Sep 17 00:00:00 2001 From: GivFNZ Date: Sat, 22 Mar 2025 20:29:27 -0300 Subject: [PATCH] fix: sidebar will now appear in the top of header --- src/components/Drawer/styles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Drawer/styles.ts b/src/components/Drawer/styles.ts index 35a4ece..838bcd7 100644 --- a/src/components/Drawer/styles.ts +++ b/src/components/Drawer/styles.ts @@ -33,6 +33,7 @@ export const DrawerContainer = styled.div` background-color: ${(props) => props.theme["gray-800"]}; animation-name: drawerAnimation; animation-duration: 0.3s; + z-index: 2; @keyframes drawerAnimation { 0% {width: 0px}; 100% {width: 200px};