12 lines
210 B
SCSS
12 lines
210 B
SCSS
.room {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
height: 100%;
|
|
|
|
&-aside {
|
|
display: grid;
|
|
min-width: 20%;
|
|
grid-template-rows: auto minmax(0, 1fr) auto;
|
|
overflow: hidden auto;
|
|
}
|
|
} |