From 56ea8786561980905dd6e38819a3cffddc7992e2 Mon Sep 17 00:00:00 2001 From: Bhavya Pandiya Date: Thu, 11 Jun 2026 21:46:17 +0530 Subject: [PATCH] Fix footer mobile layout (Fixes #580) --- src/components/layout/Footer.module.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/layout/Footer.module.css b/src/components/layout/Footer.module.css index f41807ef..7f66116e 100644 --- a/src/components/layout/Footer.module.css +++ b/src/components/layout/Footer.module.css @@ -62,9 +62,16 @@ } @media (max-width: 768px) { + .links { + align-items: center; + } + .link { + justify-content: center; + } .bottom { flex-direction: column; gap: 20px; text-align: center; + align-items: center; } }