27 lines
359 B
SCSS
Raw Normal View History

2020-05-14 14:23:49 +08:00
$item-height: 40px;
2018-08-12 13:14:46 +08:00
2020-05-14 14:23:49 +08:00
.menu-item-container {
overflow-x: scroll;
height: 100vh;
pointer-events: none;
.menu-items {
display: flex;
width: 100%;
height: $item-height;
pointer-events: auto;
}
2018-08-12 13:14:46 +08:00
}
2020-05-14 14:23:49 +08:00
.menu-placeholder {
height: $item-height;
position: relative;
width: 100%;
}
2020-05-14 14:48:11 +08:00
.top-menu {
.menu-item.vdo {
display: none;
}
}