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

33 lines
451 B
SCSS
Raw Normal View History

2022-05-03 23:55:13 +02:00
.root {
2022-05-12 08:31:31 +02:00
display: grid;
grid-template-columns: 1fr auto;
}
.mobileChat {
2022-05-12 08:31:31 +02:00
display: block;
top: 0px;
width: 100%;
2022-05-03 23:55:13 +02:00
}
.leftCol {
2022-05-12 08:31:31 +02:00
display: grid;
2022-05-03 23:55:13 +02:00
}
.lowerRow {
2022-05-12 08:31:31 +02:00
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) {
2022-05-12 08:31:31 +02:00
.mobileChat {
display: none;
}
}