mirror of
https://github.com/owncast/owncast.git
synced 2024-12-26 11:08:43 +03:00
4703a64878
* quick fix for mobile menu button overlap * - use new dynamic vh css prop to handle ios safari double scrolling - only force tabs height when online * cleanup * add comment
15 lines
343 B
SCSS
15 lines
343 B
SCSS
@import '../../../styles/mixins.scss';
|
|
|
|
.layout {
|
|
// this margin is for fixed header
|
|
padding-top: var(--header-height);
|
|
background-color: var(--theme-color-main-background);
|
|
min-height: 100dvh;
|
|
|
|
position: relative;
|
|
|
|
// add some spacing between the last row of content and the footer
|
|
.footerContainer {
|
|
margin-top: 5em;
|
|
}
|
|
}
|