Readjust footer position and behaviour
This commit is contained in:
parent
ceb49f9d03
commit
00e2ba70c2
@ -1,19 +1,25 @@
|
||||
import {Link} from "@nextui-org/react";
|
||||
import {Container, Link, Row} from "@nextui-org/react";
|
||||
|
||||
function Footer() {
|
||||
return (
|
||||
<Container>
|
||||
<Row
|
||||
justify="center"
|
||||
align="center">
|
||||
<Link
|
||||
href={process.env.PUBLIC_URL + 'impressum.html'}
|
||||
block
|
||||
css={{
|
||||
position: "fixed",
|
||||
bottom: 0,
|
||||
right: 0,
|
||||
textAlign: "center",
|
||||
margin: 15
|
||||
margin: 15,
|
||||
zIndex: 1,
|
||||
bgBlur: "$draculaCurrentLineAlpha"
|
||||
}}>
|
||||
Impressum und Datenschutz
|
||||
</Link>
|
||||
</Row>
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user