diff --git a/_includes/footer.njk b/_includes/footer.njk index bcf70ff..08b1245 100644 --- a/_includes/footer.njk +++ b/_includes/footer.njk @@ -2,6 +2,7 @@

Read the site attribution

+

© 2023-2026

Site feedback? Questions? Reach out to Lee

diff --git a/css/main.css b/css/main.css index 18e537d..3430715 100644 --- a/css/main.css +++ b/css/main.css @@ -194,10 +194,20 @@ footer { margin: 1rem auto 0; padding: 1rem .5rem; width: 100%; - flex-wrap: wrap; + flex-flow: row wrap; border-top: .25rem solid var(--color-header); } footer p { margin: 0.5rem 0; } + +@media (max-width: 650px) { + footer { + flex-flow: column nowrap; + } + + footer p { + text-align: center; + } +}