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 (
<Container>
<Row
justify="center"
align="center">
<Link <Link
href={process.env.PUBLIC_URL + 'impressum.html'} href={process.env.PUBLIC_URL + 'impressum.html'}
block block
css={{ css={{
position: "fixed",
bottom: 0, bottom: 0,
right: 0,
textAlign: "center", textAlign: "center",
margin: 15 margin: 15,
zIndex: 1,
bgBlur: "$draculaCurrentLineAlpha"
}}> }}>
Impressum und Datenschutz Impressum und Datenschutz
</Link> </Link>
</Row>
</Container>
); );
} }