* On narrow screens, bump the footer links to a second row. Re #2260. Thanks to @kittee for CSS assistance. * Prettified Code! Co-authored-by: heller <heller@users.noreply.github.com>
This commit is contained in:
@@ -7,26 +7,20 @@ export type FooterProps = {
|
||||
|
||||
export const Footer: FC<FooterProps> = ({ version }) => (
|
||||
<div className={styles.footer}>
|
||||
<div className={styles.text}>
|
||||
<span>
|
||||
Powered by <a href="https://owncast.online">{version}</a>
|
||||
</div>
|
||||
<div className={styles.links}>
|
||||
<div className={styles.item}>
|
||||
<a href="https://owncast.online/docs" target="_blank" rel="noreferrer">
|
||||
Documentation
|
||||
</a>
|
||||
</div>
|
||||
<div className={styles.item}>
|
||||
<a href="https://owncast.online/help" target="_blank" rel="noreferrer">
|
||||
Contribute
|
||||
</a>
|
||||
</div>
|
||||
<div className={styles.item}>
|
||||
<a href="https://github.com/owncast/owncast" target="_blank" rel="noreferrer">
|
||||
Source
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</span>
|
||||
<span className={styles.links}>
|
||||
<a href="https://owncast.online/docs" target="_blank" rel="noreferrer">
|
||||
Documentation
|
||||
</a>
|
||||
<a href="https://owncast.online/help" target="_blank" rel="noreferrer">
|
||||
Contribute
|
||||
</a>
|
||||
<a href="https://github.com/owncast/owncast" target="_blank" rel="noreferrer">
|
||||
Source
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
);
|
||||
export default Footer;
|
||||
|
||||
Reference in New Issue
Block a user