owncast/web/components/ui/Content/Content.module.scss
2022-10-20 20:25:54 +02:00

41 lines
625 B
SCSS

.root {
display: grid;
grid-template-columns: 1fr auto;
height: 100%;
width: 100%;
background-color: var(--theme-color-background-main);
.mainSection {
display: flex;
flex-direction: column;
}
.topSection {
padding: 0;
background-color: var(--theme-color-components-video-background);
}
.lowerSection {
padding: 0em 2%;
margin-bottom: 2em;
}
.lowerSectionMobile {
padding: 0.3em;
}
}
.leftCol {
display: flex;
flex-direction: column;
}
.loadingSpinner {
display: grid;
}
.main {
display: grid;
flex: 1;
height: 100%;
grid-template-rows: 1fr auto;
}