Update NavSidebar.scss to use z-index from _variables.scss
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.
This commit is contained in:
parent
d5e2cd5120
commit
0b3bb85ee2
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
.NavSidebar {
|
.NavSidebar {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 10;
|
z-index: $z-index-base;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
Loading…
Reference in a new issue