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

69 lines
961 B
SCSS
Raw Normal View History

2022-05-04 00:55:13 +03:00
.root {
2022-05-12 09:31:31 +03:00
display: grid;
grid-template-columns: 1fr auto;
}
.mobileChat {
position: relative;
2022-05-12 09:31:31 +03:00
display: block;
top: 0px;
width: 100%;
2022-05-04 00:55:13 +03:00
}
.leftCol {
2022-05-12 09:31:31 +03:00
display: grid;
2022-05-04 00:55:13 +03:00
}
.lowerRow {
2022-05-12 09:31:31 +03:00
position: relative;
display: grid;
}
2022-05-18 02:07:56 +03:00
.buttonsLogoTitleSection {
margin-left: 1.5vw;
margin-right: 1.5vw;
}
.pageContentSection {
background-color: var(--theme-background-secondary);
border-radius: var(--theme-rounded-corners);
margin: 1vw;
padding: 1vw;
width: 100%;
}
2022-05-18 02:07:56 +03:00
.logoTitleSection {
display: flex;
flex-direction: row;
}
.titleSection {
display: flex;
flex-direction: column;
margin-top: 20px;
margin-left: 10px;
.title {
font-size: 2.5vw;
font-weight: bold;
color: var(--theme-text-primary);
}
.subtitle {
font-size: 1.6vw;
font-weight: bold;
}
}
.loadingSpinner {
position: fixed;
left: 50%;
top: 50%;
z-index: 999999;
}
@media (min-width: 768px) {
2022-05-12 09:31:31 +03:00
.mobileChat {
display: none;
}
}