owncast/web/components/ui/Content/Content.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

33 lines
451 B
SCSS

.root {
display: grid;
grid-template-columns: 1fr auto;
}
.mobileChat {
display: block;
top: 0px;
width: 100%;
}
.leftCol {
display: grid;
}
.lowerRow {
position: relative;
display: grid;
}
.pageContentSection {
background-color: var(--theme-background-secondary);
border-radius: var(--theme-rounded-corners);
margin: 1vw;
padding: 1vw;
width: 100%;
}
@media (min-width: 768px) {
.mobileChat {
display: none;
}
}