Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 04e71f5

Browse files
author
Manuel Proß
committed
feat(web): add spacing to footer according to styleguide
1 parent 8d7867a commit 04e71f5

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

web/src/components/Layout/Footer/Footer.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ import React from "react";
33
export default function Footer() {
44
return (
55
<footer className="w-full flex justify-center items-center pb-3">
6-
<a href="/impressum">Impressum</a>
7-
<span className="border-x-2 border-primary h-9 mx-3 w-0" />
8-
<a href="/copyright">Copyright</a>
6+
<a className="link" href="/impressum">
7+
Impressum
8+
</a>
9+
<span className="border-x-2 border-primary h-9 mx-[48px] w-0" />
10+
<a className="link" href="/copyright">
11+
Copyright
12+
</a>
913
</footer>
1014
);
1115
}

0 commit comments

Comments
 (0)