From 33ae99810c610bda37422823abf8c9abd785655b Mon Sep 17 00:00:00 2001 From: HenriqueSSan Date: Mon, 9 Jan 2023 16:20:46 -0300 Subject: [PATCH] fix(footer): socials container not better space --- src/template/Footer/index.module.scss | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/template/Footer/index.module.scss b/src/template/Footer/index.module.scss index 00d3cd6..389990a 100644 --- a/src/template/Footer/index.module.scss +++ b/src/template/Footer/index.module.scss @@ -312,7 +312,7 @@ } } -.lists { +.footer__lists.lists { width: 100%; display: flex; @@ -486,6 +486,7 @@ } .footer__network { + width: 100%; & > a { display: none; @@ -511,10 +512,19 @@ } .socials { + width: 100%; display: inline-flex; align-items: center; gap: 10px; + @media screen and (min-width: 1025px) { + li { + width: function.fluid(35px, 215px); + min-height: 35px; + flex-grow: 1.2; + } + } + a { display: flex; align-items: center; @@ -523,11 +533,6 @@ img { width: 100%; height: 100%; - - @media only screen and (min-width: 2500px) { - width: 75px; - height: 75px; - } } } }