feat(header): estilização base do header

This commit is contained in:
Gabriel Ferraz Nogueira 2022-12-09 17:52:06 -03:00
parent 2dab582c69
commit 6ab26afe97
3 changed files with 102 additions and 10888 deletions

10970
checkout/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ footer .footerCheckout__wrapper {
} }
footer .footerCheckout__prateleira, footer .footerCheckout__prateleira,
header { header {
width: 79.53125%; width: 100%;
margin: 0 auto; margin: 0 auto;
} }

View File

@ -4,9 +4,16 @@
width: auto !important; width: auto !important;
} }
&__wrapper { &__wrapper {
align-items: center;
display: flex; display: flex;
align-items: center;
justify-content: space-between; justify-content: space-between;
padding: 16px;
border-bottom: 1px solid #000;
}
@media (max-width: 1024px) {
.progress-bar {
display: none;
}
} }
&__logo { &__logo {
@ -17,9 +24,12 @@
} }
&__safeBuy { &__safeBuy {
display: flex;
span { span {
align-items: center; align-items: center;
display: flex; display: flex;
width: 100%;
text-transform: uppercase; text-transform: uppercase;
font-family: $font-family; font-family: $font-family;
font-style: normal; font-style: normal;
@ -27,10 +37,12 @@
font-size: 12px; font-size: 12px;
line-height: 14px; line-height: 14px;
color: $color-gray; color: $color-gray;
margin-left: 8px;
} }
i { img {
margin-right: 8px; width: 9.19%;
height: 13.3px;
} }
} }
} }