UX: handle opening composer from slide-in hamburger menu (#159)

This commit is contained in:
Kris
2025-05-12 12:04:38 -04:00
committed by GitHub
parent d749920db7
commit 86d0c03b03
3 changed files with 42 additions and 0 deletions
+11
View File
@@ -1,3 +1,5 @@
@use "lib/viewport";
.sidebar-wrapper,
.sidebar-hamburger-dropdown {
@include breakpoint(medium) {
@@ -80,3 +82,12 @@
display: none;
}
}
// put the draft menu above the slide-out hamburger on small desktop screens
@include viewport.until(md) {
html:not(.mobile-view) {
.topic-drafts-menu-content {
z-index: z("modal", "overlay");
}
}
}