FIX: don't prevent clicks on other page elements

This commit is contained in:
Joe 2020-05-30 21:23:25 +08:00
parent 3d784d13ab
commit 954bede29b
1 changed files with 8 additions and 6 deletions

View File

@ -1,11 +1,5 @@
$item-height: 40px;
.menu-items {
display: flex;
width: 100%;
height: $item-height;
}
.d-header {
margin-top: $item-height;
.docked & {
@ -16,6 +10,14 @@ $item-height: 40px;
.menu-item-container {
overflow-x: scroll;
height: 100vh;
pointer-events: none;
.menu-items {
display: flex;
width: 100%;
height: $item-height;
pointer-events: auto;
}
}
.menu-placeholder {