a69ec7511a
now we use less state for the layout. Chat and header are now sticky. Moved some css vars.
15 lines
274 B
SCSS
15 lines
274 B
SCSS
.root {
|
|
background-color: var(--theme-background-secondary);
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.root {
|
|
position: sticky;
|
|
top: var(--header-h);
|
|
display: flex;
|
|
min-width: 300px !important;
|
|
max-height: calc(100vh - var(--header-h));
|
|
}
|
|
}
|