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:
Thanh Le 2023-10-09 06:34:03 -04:00 committed by Jamie Kyle
parent d5e2cd5120
commit 0b3bb85ee2

View file

@ -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;