19 lines
253 B
SCSS
19 lines
253 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
|
|
& > *:not(:first-child) {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
@media (max-width: 444px) {
|
|
width: unset;
|
|
left: 0;
|
|
padding: 8px;
|
|
}
|
|
}
|