Readjust footer position and behaviour

This commit is contained in:
Niklas Birk 2022-09-17 15:51:23 +02:00
parent ceb49f9d03
commit 00e2ba70c2

View File

@ -1,19 +1,25 @@
import {Link} from "@nextui-org/react"; import {Container, Link, Row} from "@nextui-org/react";
function Footer() { function Footer() {
return ( return (
<Link <Container>
href={process.env.PUBLIC_URL + 'impressum.html'} <Row
block justify="center"
css={{ align="center">
position: "fixed", <Link
bottom: 0, href={process.env.PUBLIC_URL + 'impressum.html'}
right: 0, block
textAlign: "center", css={{
margin: 15 bottom: 0,
}}> textAlign: "center",
Impressum und Datenschutz margin: 15,
</Link> zIndex: 1,
bgBlur: "$draculaCurrentLineAlpha"
}}>
Impressum und Datenschutz
</Link>
</Row>
</Container>
); );
} }