mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
This commit is contained in:
parent
f09ae62001
commit
4e1da3fa23
@ -4,13 +4,11 @@
|
||||
// this margin is for fixed header
|
||||
padding-top: var(--header-height);
|
||||
background-color: var(--theme-color-main-background);
|
||||
min-height: 100vh;
|
||||
position: relative;
|
||||
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;
|
||||
}
|
||||
}
|
||||
// add some spacing between the last row of content and the footer
|
||||
.footerContainer {
|
||||
margin-top: 5em;
|
||||
}
|
||||
}
|
||||
|
@ -171,7 +171,11 @@ export const Main: FC = () => {
|
||||
<FatalErrorStateModal title={fatalError.title} message={fatalError.message} />
|
||||
)}
|
||||
|
||||
{(!isMobile || !online) && <Footer dynamicPaddingValue={dynamicFooterPadding} />}
|
||||
{(!isMobile || !online) && (
|
||||
<div className={styles.footerContainer}>
|
||||
<Footer dynamicPaddingValue={dynamicFooterPadding} />
|
||||
</div>
|
||||
)}
|
||||
</Layout>
|
||||
<Noscript />
|
||||
</>
|
||||
|
Loading…
x
Reference in New Issue
Block a user