Skip to content

Commit

Permalink
Update NavSidebar.scss to use z-index from _variables.scss
Browse files Browse the repository at this point in the history
Previously, NavSidebar used a magic number for z-index. This commit changed this z-index to use  $z-index-above-base from _variables.scss.

Fixes #6633 where contextmenu--visible (part of ConversationPanel) is hidden behind NavSidebar.
  • Loading branch information
lvthanh03 authored and jamiebuilds-signal committed Dec 6, 2023
1 parent d5e2cd5 commit 0b3bb85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stylesheets/components/NavSidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

.NavSidebar {
position: relative;
z-index: 10;
z-index: $z-index-base;
height: 100%;
display: flex;
flex-direction: column;
Expand Down

0 comments on commit 0b3bb85

Please sign in to comment.