owncast/web/components/ui/Sidebar/Sidebar.module.scss
t1enne 2cfb336411 Added mobile chat and some responsiveness
weird 0 popping out when toggling chat. wasn't able to find which
component is responsible. Used bare mininum scss. May refactor in the
future.
2022-05-04 09:55:44 +02:00

13 lines
130 B
SCSS

.root {
background-color: var(--gray-700);
display: none;
}
@media (min-width: 768px) {
.root {
display: flex;
}
}