Fix drag handle z-index relative to NavSidebar

This commit is contained in:
Jamie Kyle 2023-12-07 12:05:11 -08:00 committed by GitHub
parent 313a26f05f
commit 0b629c9f70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
.NavSidebar { .NavSidebar {
position: relative; position: relative;
z-index: $z-index-base; // Note: Intentionally no z-index here so drag handle is above other content
height: 100%; height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -139,6 +139,7 @@
.NavSidebar__DragHandle { .NavSidebar__DragHandle {
position: absolute; position: absolute;
z-index: $z-index-above-above-base;
top: 0; top: 0;
bottom: 0; bottom: 0;
inset-inline-start: 100%; inset-inline-start: 100%;