mirror of
https://github.com/owncast/owncast.git
synced 2024-12-27 19:48:32 +03:00
14 lines
336 B
SCSS
14 lines
336 B
SCSS
@import '../../../styles/mixins';
|
|
|
|
.layout {
|
|
// this margin is for fixed header
|
|
padding-top: var(--header-height);
|
|
background-color: var(--theme-color-main-background);
|
|
min-height: 100vh;
|
|
position: relative;
|
|
|
|
// add some spacing between the last row of content and the footer
|
|
.footerContainer {
|
|
margin-top: 5em;
|
|
}
|
|
}
|