feature/header #1

Merged
cainamilech merged 3 commits from feature/header into develop 2022-12-11 02:20:43 +00:00
3 changed files with 23 additions and 2 deletions
Showing only changes of commit 6c1cc47274 - Show all commits

View File

@ -14,8 +14,14 @@ footer .footerCheckout__wrapper {
} }
footer .footerCheckout__prateleira, footer .footerCheckout__prateleira,
header { header {
width: 79.53125%; @include mq(tablet, min) {
margin: 0 auto; width: 79.53125%;
margin: 0 auto;
}
@include mq(tablet, max) {
margin: 0 16px;
}
} }
body { body {

View File

@ -17,6 +17,11 @@
width: 19.2161%; width: 19.2161%;
} }
@include mq(tablet, max) {
width: 155.58px;
margin: 16px 0;
}
img { img {
width: 100%; width: 100%;
} }
@ -35,6 +40,11 @@
height: 41.46px; height: 41.46px;
margin-right: 7.9px; margin-right: 7.9px;
} }
@include mq(tablet, max) {
width: 12px;
height: 13.33px;
}
} }
span { span {
align-items: center; align-items: center;
@ -65,6 +75,10 @@
width: 1078.86px; width: 1078.86px;
} }
@include mq(tablet, max) {
display: none;
}
ul { ul {
list-style: none; list-style: none;
display: flex; display: flex;

View File

@ -27,6 +27,7 @@ $grid-breakpoints: (
sm: 576px, sm: 576px,
md: 768px, md: 768px,
lg: 992px, lg: 992px,
tablet: 1025px,
xl: 1200px, xl: 1200px,
xxl: 2500px, xxl: 2500px,
) !default; ) !default;