Removed desktop toolbar scrollbar.

This commit is contained in:
Alexander 2021-11-22 23:44:41 +02:00
commit 4871bd1326

View file

@ -17,7 +17,6 @@
.r-menu { .r-menu {
display: flex; display: flex;
align-items: center; align-items: center;
overflow-x: scroll;
> div { > div {
display: flex; display: flex;
@ -156,17 +155,20 @@
@media (max-width: 900px) { @media (max-width: 900px) {
.toolbar { .toolbar {
.r-menu { .r-menu {
// overflow: scroll; overflow: scroll;
> div { > div {
margin-left: 3rem; margin-left: 3rem;
// overflow: scroll;
position: relative; position: relative;
display: flex; display: flex;
flex-wrap: unset; flex-wrap: unset;
width: 100%; width: 100%;
align-items: center; align-items: center;
} }
.select-wrapper + div {
display: none;
}
} }
} }
} }