@ethicdevs/gitfoss | Show object: 9cec23485bd304126f7b1dd2f0d9398e90fc96b2 ∙ GitFOSS
fix(drawer): z-index was too low
+ 3
- 3
app/components/DrawerPrimary.tsx
@@ -358,7 +358,7 @@ const StyledDrawerPrimary = styled.aside<
         display: flex;
         pointer-events: auto;
         opacity: 1;
-        z-index: 8000;
+        z-index: 9999;
       }
     }
   `};

app/components/DrawerSettings.tsx
@@ -101,7 +101,7 @@ export const DrawerSettings = ({
                 commonProps.path! === pathMyAccount ? "active" : undefined
               }
             >
-              <span>My Account</span>
+              <span>Repositories</span>
               <UserIcon
                 color={NamedColors.TEXT_DEFAULT[themeScheme]}
                 size={20}

...
@@ -231,7 +231,7 @@ const StyledDrawerSettings = styled.aside<
         display: flex;
         pointer-events: auto;
         opacity: 1;
-        z-index: 8000;
+        z-index: 9999;
       }
     }
   `};