Skip to content

Commit

Permalink
[MWPW-152674] [Gray Box] Desktop gnav not hidden when device view is …
Browse files Browse the repository at this point in the history
…open (#2597)

fixed gnav not hidden on device view
  • Loading branch information
robert-bogos authored Jul 23, 2024
1 parent 30e0b8b commit 2869243
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/blocks/graybox/graybox.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
position: fixed;
right: 0;
top: 15%;
z-index: calc(var(--above-all) + 1);
z-index: calc(var(--above-all) + 2);
}

.graybox-container .gb-toggle {
Expand Down Expand Up @@ -190,7 +190,7 @@
}

.dialog-modal.graybox-modal {
z-index: var(--above-all);
z-index: calc(var(--above-all) + 1);
}

.dialog-modal.graybox-modal.mobile > div {
Expand Down Expand Up @@ -260,7 +260,7 @@

.modal-curtain.graybox-curtain.is-open {
background: var(--gb-modal-bg);
z-index: calc(var(--above-all) - 1);
z-index: var(--above-all);
}

@media (max-height: 910px), (max-width: 420px) {
Expand Down

0 comments on commit 2869243

Please sign in to comment.