mirror of
https://github.com/owncast/owncast.git
synced 2024-12-26 11:08:43 +03:00
c2a0295a0c
* - set vars for player container height and status bar height - use them to calculate mobile top spacing to adjust for tab content positioning * give main content section a min height, place footer absolutely at bottom; rm all the fixed footer styling * cleanup; restructure tabbed display logic and css a bit * Prettified Code! * cleanup * fix(story): footer story needs to be wrapped in RecoilRoot if it is to use Recoil * revert adding footer to mobile about section * prevent double scrolling --------- Co-authored-by: gingervitis <gingervitis@users.noreply.github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com>
16 lines
362 B
SCSS
16 lines
362 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: 100vh;
|
|
position: relative;
|
|
|
|
// add some spacing between the last row of content and the footer
|
|
:global(.ant-row) {
|
|
&:last-of-type {
|
|
margin-bottom: 5em;
|
|
}
|
|
}
|
|
}
|