From 1a9b3f85bbc7fb6ff5b7704a5d21c5c2daa6a3e9 Mon Sep 17 00:00:00 2001 From: Rishav Raj <97666287+Rishav1707@users.noreply.github.com> Date: Wed, 28 Dec 2022 01:38:49 +0530 Subject: [PATCH] Footer text wrap solved. (#2508) * Font size reduced * Update Footer.module.scss --- web/components/ui/Footer/Footer.module.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/web/components/ui/Footer/Footer.module.scss b/web/components/ui/Footer/Footer.module.scss index 067fe893a..845eca62a 100644 --- a/web/components/ui/Footer/Footer.module.scss +++ b/web/components/ui/Footer/Footer.module.scss @@ -1,3 +1,5 @@ +$Tablet-breakpoint: 768px; + .footer { display: flex; align-items: center; @@ -28,3 +30,9 @@ flex-direction: row; } } + +@media (max-width: $Tablet-breakpoint) { + .footer { + font-size: 10px; + } +}