32 lines
379 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-items {
display: flex;
width: 100%;
height: $item-height;
2018-08-12 13:14:46 +08:00
}
2020-05-14 14:23:49 +08:00
.d-header {
margin-top: $item-height;
.docked & {
margin-top: 0;
2018-08-12 13:14:46 +08:00
}
}
2020-05-14 14:23:49 +08:00
.menu-item-container {
overflow-x: scroll;
height: 100vh;
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;
}
}