diff --git a/src/components/Footer.astro b/src/components/Footer.astro index b77dd70..7c9d8c1 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -12,9 +12,8 @@ const backgroundColorNightMode = "#240046"; <style define:vars={{backgroundColor, backgroundColorNightMode}}> footer { background-color: var(--backgroundColor); - grid-row: 3/4; + grid-row: -1; grid-column: 1/3; - align-self: end; display: flex; justify-content: center; align-items: center; @@ -25,6 +24,7 @@ const backgroundColorNightMode = "#240046"; font-family: system-ui; font-size: 1.3rem; letter-spacing: 0.05rem; + } @media (prefers-color-scheme: dark) { diff --git a/src/styles/global.css b/src/styles/global.css index c791e54..af3cf65 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -28,7 +28,7 @@ body { background-image: url("/flowers.png"); display: grid; grid-template-columns: 25vw 50vw 25vw; - grid-template-rows: 10vh 100% 18.5vh; + grid-template-rows: 10vh 100% 10vh; row-gap: 5vh; color: var(--text-color); }