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.
27 lines
407 B
SCSS
27 lines
407 B
SCSS
:global(#app) {
|
|
.action {
|
|
align-items: center;
|
|
display: flex;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.actions {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: flex-start;
|
|
margin: 20px 20px;
|
|
}
|
|
|
|
.wrapper {
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|