owncast/web/components/ui/Sidebar/Sidebar.module.scss
t1enne a69ec7511a Changed Layout a bit
now we use less state for the layout. Chat and header are now sticky.
Moved some css vars.
2022-05-17 08:41:39 +02:00

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));
}
}