We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67a29dd commit 5bf33ecCopy full SHA for 5bf33ec
web/editor_ui.tsx
@@ -299,11 +299,11 @@ export class MainUI {
299
}}
300
actionButtons={[
301
// Vertical menu button
302
- ...(viewState.isMobile &&
303
- viewState.config.mobileMenuStyle.includes("hamburger"))
+ ...(viewState.config.mobileMenuStyle.includes("hamburger"))
304
? [{
305
icon: featherIcons.MoreVertical,
306
description: "Open Menu",
+ class: "expander",
307
callback:
308
() => {/* nothing to do, menu opens on hover/mobile click */},
309
}]
web/styles/top.scss
@@ -72,7 +72,7 @@
72
flex: 0 0 auto;
73
text-align: right;
74
75
- &.hamburger button:first-of-type {
+ &.hamburger button.expander {
76
display: none;
77
}
78
@@ -131,7 +131,7 @@
131
132
133
button {
134
- &:first-of-type {
+ &.expander {
135
display: initial;
136
137
0 commit comments