diff --git a/ui/src/components/Header.tsx b/ui/src/components/Header.tsx
index 569558bb..c6fe45d4 100644
--- a/ui/src/components/Header.tsx
+++ b/ui/src/components/Header.tsx
@@ -115,6 +115,9 @@ function Mobile({
onClose={handleMenuToggle}
ModalProps={{
keepMounted: true, // Better open performance on mobile.
+ BackdropProps: {
+ style: { backgroundColor: "transparent" },
+ },
}}
sx={{
display: { xs: "block", sm: "none" },
@@ -122,6 +125,7 @@ function Mobile({
boxSizing: "border-box",
width: drawerWidth,
backgroundColor: "base.main",
+ marginTop: (theme) => `${theme.mixins.toolbar.minHeight}px`,
},
zIndex: (theme) => theme.zIndex.drawer + 1,
}}
@@ -133,15 +137,6 @@ function Mobile({
flexDirection="column"
alignItems="center"
>
-
-
-
theme.breakpoints.values.sm }}>
{navItems.map((item) => (
@@ -154,7 +149,7 @@ function Mobile({