chore: Update dropdown z-index to be on top of contact details pane (#3411)

This commit is contained in:
Fayaz Ahmed 2021-11-18 19:55:32 +05:30 committed by GitHub
parent c2333214af
commit 8384d0b38e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -3,7 +3,7 @@
@include border-light;
box-sizing: content-box;
width: fit-content;
z-index: 999;
z-index: var(--z-index-very-high);
&.dropdown-pane--open {
display: block;

View file

@ -8,5 +8,6 @@
--z-index-high: 1000;
--z-index-higher: 2000;
--z-index-much-higher: 5000;
--z-index-very-high: 9999;
--z-index-highest: 10000;
}