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; + } +}