owncast/web/components/ui/Sidebar/Sidebar.module.scss

23 lines
395 B
SCSS
Raw Normal View History

.root {
background-color: var(--theme-color-background-chat);
display: none;
}
@media (min-width: 768px) {
.root {
position: sticky;
2022-05-17 16:36:07 +02:00
display: block;
}
}
/*
2022-05-17 16:36:07 +02:00
First div is .ant-layout-sider-children
Only way to target it apparently
*/
.root > div {
display: flex;
flex-flow: column nowrap;
-moz-box-flex: 1 !important;
flex-grow: 1 !important;
height: 100% !important;
}