diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 7a1f871..1d80f27 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -3,61 +3,66 @@ @@ -75,4 +80,27 @@ :global(.dark) .divider { background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)); } + + .footerContent { + display: flex; + justify-content: space-between; + flex-wrap: wrap; + gap: 2rem; + } + + .credits { + flex: 2; + display: flex; + min-width: 300px; + max-width: 420px; + } + + .links { + text-align: right; + flex: 1; + } + + .links a { + white-space: nowrap; + }