From 3be32dbf894ceb5c8b8b7046100c8165aff01bf6 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Wed, 14 Feb 2024 15:17:39 +0100 Subject: [PATCH] feat(ui): :wheelchair: wrap footer for small screen --- components/Footer.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/Footer.css b/components/Footer.css index 00813f9..0c191d0 100644 --- a/components/Footer.css +++ b/components/Footer.css @@ -13,6 +13,13 @@ footer div { margin: auto; } +@media (width < 800px) { + footer div { + flex-wrap: wrap; + text-align: center; + } +} + .footer__badges { display: grid; grid-template-columns: repeat(3, 1fr);