mirror of
https://github.com/owncast/owncast.git
synced 2025-01-07 09:07:31 +03:00
36 lines
564 B
SCSS
36 lines
564 B
SCSS
.streamInfo {
|
|
position: relative;
|
|
display: grid;
|
|
}
|
|
|
|
.buttonsLogoTitleSection {
|
|
margin-left: 1.5vw;
|
|
margin-right: 1.5vw;
|
|
}
|
|
|
|
.pageContentSection {
|
|
// background-color: var(--theme-background-secondary);
|
|
border-radius: var(--theme-rounded-corners);
|
|
width: 100%;
|
|
}
|
|
|
|
.logoTitleSection {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.titleSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.title {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
color: var(--theme-text-primary);
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1.6vw;
|
|
font-weight: bold;
|
|
}
|
|
}
|