Skip to content

Commit

Permalink
Merge pull request #6152 from FaheemOnHub/bug/faheemonhub/6150
Browse files Browse the repository at this point in the history
fix: Ensure modal appears above iframe by adjusting z-index
  • Loading branch information
leecalcote authored Jan 5, 2025
2 parents 0095223 + 44c437e commit 6e2e6c2
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/sections/General/Navigation/navigation.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const NavigationWrap = styled.header`
}
}
.meshery-cta {
z-index: 999;
position: relative;
display: flex;
align-items: center;
Expand Down Expand Up @@ -618,12 +619,12 @@ const NavigationWrap = styled.header`
.mobile-nav-item {
padding: 1px;
ul:after {
content: "";
display: block;
height: 1px;
width: 40%;
margin: 10px;
background: ${(props) => props.theme.greyC1C1C1ToGreyB3B3B3};
content: "";
display: block;
height: 1px;
width: 40%;
margin: 10px;
background: ${(props) => props.theme.greyC1C1C1ToGreyB3B3B3};
}
.menu-item {
font-size: 16px;
Expand Down Expand Up @@ -757,7 +758,8 @@ const NavigationWrap = styled.header`
}
.dark-theme-toggle {
/* margin-left: 2rem; */
visibility: ${(props) => typeof props.theme.DarkTheme === "boolean" ? "visible" : "hidden"};
visibility: ${(props) =>
typeof props.theme.DarkTheme === "boolean" ? "visible" : "hidden"};
}
.toggle {
Expand Down

0 comments on commit 6e2e6c2

Please sign in to comment.