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 signalapp#6633 where contextmenu--visible (part of ConversationPanel) is hidden behind NavSidebar.
  • Loading branch information
lvthanh03 authored Oct 9, 2023
1 parent 28d93f3 commit cfb1205
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-above-base;
height: 100%;
display: flex;
flex-direction: column;
Expand Down

0 comments on commit cfb1205

Please sign in to comment.