From 8af057c801947669f6f726f4d11bd7e4b256b04e Mon Sep 17 00:00:00 2001 From: Rafael Sampaio Date: Tue, 3 Jan 2023 13:57:54 -0300 Subject: [PATCH] feat: adiciona footer top 2500px --- src/components/FooterTop/styles.module.scss | 50 ++++++++++++++++++++- 1 file changed, 49 insertions(+), 1 deletion(-) diff --git a/src/components/FooterTop/styles.module.scss b/src/components/FooterTop/styles.module.scss index b903acd..efed8f1 100644 --- a/src/components/FooterTop/styles.module.scss +++ b/src/components/FooterTop/styles.module.scss @@ -18,6 +18,7 @@ justify-content: space-between; width: 707px; height: 100%; + margin-right: 50px; .menuLists-title { height: 14px; @@ -60,7 +61,7 @@ &__socialMedia { width: 215px; - height: 63px; + height: auto; .socialMedia-icons { display: flex; @@ -81,4 +82,51 @@ color: var(--black-400); } } + + @media (min-width: 2500px) { + height: 297px; + + &__content { + width: 92.037%; + } + + &__menuList { + width: 1531px; + + .menuLists-title { + height: 28px; + } + + h1 { + font-size: 28px; + line-height: 33px; + } + + h2 { + font-size: 24px; + line-height: 28px; + } + + li { + font-size: 24px; + line-height: 28px; + } + } + + &__socialMedia { + width: 390px; + + .socialMedia-icons { + img { + width: 70px; + height: 70px; + } + } + + .socialMeida-site { + font-size: 28px; + line-height: 33px; + } + } + } }