feat: Responsividade tela mobile finalizada

This commit is contained in:
José Carlos Lins 2022-12-30 09:31:27 -03:00
parent 35ac3d385f
commit 44254474cf
4 changed files with 58 additions and 2 deletions

View File

@ -115,7 +115,8 @@
.footerPayments {
grid-area: payments;
width: max-content;
max-width: 344px;
width: auto;
.footerPaymentsWrapper {
div {
@ -147,3 +148,41 @@
}
}
}
@media screen and (max-width: 370px) {
.containerFooterBottom {
.footerPayments {
display: block;
.footerPaymentsWrapper {
div {
display: block;
img {
width: 30.27px;
height: 16.97px;
margin-right: 11px;
&:last-child {
margin-top: 11px;
}
}
}
}
.divider {
display: none;
}
.footerPaymentsWrapperVtex {
div {
.vtexIcon {
width: 45px;
height: 28px;
margin-left: -2px;
margin-top: 11px;
}
}
}
}
}
}

View File

@ -87,7 +87,7 @@
grid-template-areas:
"menuToggle logo cart"
"search search search";
grid-template-columns: 2.7343% 13.2812% 2.7343%;
grid-template-columns: 28px 136px 28px;
.menuToggle {
grid-area: menuToggle;

View File

@ -44,3 +44,11 @@
}
}
}
@media screen and (max-width: 540px) {
.containerMenuToggle {
.contentMenuToogle {
width: 90.4%;
}
}
}

View File

@ -35,3 +35,12 @@
}
}
}
@media screen and (max-width: 540px) {
.containerHome {
.floatElementsFooter {
right: 16px;
bottom: 16px;
}
}
}