mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 23:24:29 +03:00
22 lines
371 B
SCSS
22 lines
371 B
SCSS
.outerContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.innerContainer {
|
|
width: clamp(200px, 100%, 300px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--theme-background-secondary);
|
|
margin: 1rem auto;
|
|
border-radius: var(--theme-rounded-corners);
|
|
padding: 1rem;
|
|
}
|
|
|
|
.header {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 20px;
|
|
}
|