From 27d161f214f3708855db7c8f7eae92701114c430 Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Sun, 2 Nov 2025 23:49:07 +0100 Subject: [PATCH] add of responsive design for the Footer component --- src/components/Footer/Footer.module.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/components/Footer/Footer.module.css b/src/components/Footer/Footer.module.css index 8088bfd..c78d7b9 100644 --- a/src/components/Footer/Footer.module.css +++ b/src/components/Footer/Footer.module.css @@ -17,4 +17,18 @@ color: black; width: fit-content; text-align: center; +} + + + +@media screen and (max-width: 480px) { + .footer{ + padding: 1rem; + } + + .footerContent{ + flex-direction: column; + align-items: center; + gap: 0.5rem; + } } \ No newline at end of file