owncast/web/components/ui/Sidebar/Sidebar.module.scss
Gabe Kangas 813f8692f0
Support color customization from the admin (#2338)
* Add user-customizable theming. Closes #1915

* Prettified Code!

* Add user-customizable theming. Closes #1915

* Add explicit color for page content background

* Prettified Code!

Co-authored-by: gabek <gabek@users.noreply.github.com>
2022-11-12 20:26:55 -08:00

23 lines
435 B
SCSS

@import '../../../styles/mixins.scss';
.root {
background-color: var(--theme-color-components-chat-background);
display: none;
@include screen(desktop) {
position: sticky;
display: block;
}
}
/*
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;
}