24 lines
411 B
SCSS
24 lines
411 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
position: relative;
|
|
.content {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
height: calc(100vh - var(--header-height));
|
|
|
|
@media (max-width: $screen-m) {
|
|
flex-direction: column;
|
|
}
|
|
.right-side {
|
|
min-width: calc(100% - 336px);
|
|
overflow-y: auto;
|
|
padding: var(--spacing-lg, 24px);
|
|
|
|
@media (max-width: $screen-m) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|