mirror of
https://github.com/owncast/owncast.git
synced 2025-01-05 08:07:58 +03:00
23 lines
358 B
SCSS
23 lines
358 B
SCSS
.outerContainer {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.innerContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 50%;
|
|
background-color: var(--theme-background-secondary);
|
|
margin: 2vw;
|
|
border-radius: var(--theme-rounded-corners);
|
|
padding: 25px;
|
|
}
|
|
|
|
.header {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 20px;
|
|
}
|