Fix navbar zindex

This commit is contained in:
Zoe Roux 2023-03-11 19:57:40 +09:00
parent 95257771a5
commit 91aa673dcb
2 changed files with 2 additions and 0 deletions

View File

@ -79,6 +79,7 @@ const Menu = <AsProps extends { onPress: PressableProps["onPress"] }>({
borderRadius: "8px", borderRadius: "8px",
boxShadow: boxShadow:
"0px 10px 38px -10px rgba(22, 23, 24, 0.35), 0px 10px 20px -15px rgba(22, 23, 24, 0.2)", "0px 10px 38px -10px rgba(22, 23, 24, 0.35), 0px 10px 20px -15px rgba(22, 23, 24, 0.2)",
zIndex: 2,
})} })}
> >
{children} {children}

View File

@ -191,6 +191,7 @@ export const Navbar = (props: Stylable) => {
shadowOpacity: 0.3, shadowOpacity: 0.3,
shadowRadius: 4.65, shadowRadius: 4.65,
elevation: 8, elevation: 8,
zIndex: 1,
}, },
props, props,
)} )}