Update footer

This commit is contained in:
Gabe Kangas 2022-08-29 23:33:30 -07:00
parent 6954bb5f37
commit 6c06f4fd67
No known key found for this signature in database
GPG key ID: 9A56337728BC81EA
3 changed files with 123 additions and 80 deletions

View file

@ -110,6 +110,7 @@ export default function ContentComponent() {
});
return (
<div>
<Content className={rootClassName}>
<div className={s.leftContent}>
<Spin className={s.loadingSpinner} size="large" spinning={appState.appLoading} />
@ -190,10 +191,11 @@ export default function ContentComponent() {
<FollowerCollection />
</TabPane>
</Tabs>
{!isMobile && <Footer version={version} />}
</div>
</div>
{isChatVisible && !isMobile && <Sidebar />}
</Content>
{!isMobile && <Footer version={version} />}
</div>
);
}

View file

@ -1,7 +1,32 @@
.footer {
font-size: 0.85em;
font-weight: 500;
color: var(--theme-color-palette-1);
background-color: transparent;
padding: var(--content-padding);
display: flex;
justify-content: space-between;
flex-direction: row;
background-color: var(--theme-color-background-header);
width: 100%;
color: var(--theme-color-components-text-on-dark);
font-family: var(--theme-text-body-font-family);
padding: 0.6em;
font-size: 0.8rem;
font-weight: 600;
opacity: 0.7;
border-top: 1px solid rgba(214, 211, 211, 0.5);
@media (max-width: 768px) {
display: none;
}
a {
color: var(--theme-text-secondary);
}
.links {
display: flex;
justify-content: space-between;
flex-direction: row;
.item {
margin-left: 1.2em;
}
}
}

View file

@ -1,8 +1,5 @@
import { Layout } from 'antd';
import s from './Footer.module.scss';
const { Footer } = Layout;
interface Props {
version: string;
}
@ -11,8 +8,27 @@ export default function FooterComponent(props: Props) {
const { version } = props;
return (
<Footer className={s.footer}>
<a href="https://owncast.online">{version}</a>
</Footer>
<div className={s.footer}>
<div className={s.text}>
Powered by <a href="https://owncast.online">{version}</a>
</div>
<div className={s.links}>
<div className={s.item}>
<a href="https://owncast.online/docs" target="_blank" rel="noreferrer">
Documentation
</a>
</div>
<div className={s.item}>
<a href="https://owncast.online/help" target="_blank" rel="noreferrer">
Contribute
</a>
</div>
<div className={s.item}>
<a href="https://github.com/owncast/owncast" target="_blank" rel="noreferrer">
Source
</a>
</div>
</div>
</div>
);
}