Skip to content

Commit

Permalink
Ensure Location is below appBar
Browse files Browse the repository at this point in the history
  • Loading branch information
kilemensi committed Oct 22, 2024
1 parent 30b7a0f commit 968c4e0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function ExplorePage({ panelProps, profile: profileProp, apiUri, ...props }) {
position: "absolute",
right: 0,
top: theme.typography.pxToRem(52),
zIndex: theme.zIndex.appBar,
zIndex: theme.zIndex.appBar - 1,
},
}}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ function Navigation({ variant, ...props }) {
>
{variant?.toLowerCase() === "explore" ? (
<ExploreNavigation
variant="explore"
{...props}
classes={{ section: classes.section }}
/>
Expand Down

0 comments on commit 968c4e0

Please sign in to comment.