You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
576 B
SCSS
35 lines
576 B
SCSS
:global(#app) {
|
|
.action {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
flex: 0 0 auto;
|
|
|
|
@media only screen and (max-width: 797px) {
|
|
gap: 10px;
|
|
}
|
|
}
|
|
|
|
.actions {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-flow: norow wrap;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
margin: 20px 20px;
|
|
gap: 20px;
|
|
}
|
|
|
|
.wrapper {
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
max-width: 100vw;
|
|
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|