Merge pull request 'feature/shelf' (#23) from feature/shelf into development

Reviewed-on: #23
This commit is contained in:
Savio Carvalho Moraes 2023-02-10 18:24:36 +00:00
commit 68a67e1709
9 changed files with 81 additions and 19 deletions

View File

@ -316,7 +316,7 @@
"phone": 1 "phone": 1
}, },
"infinite": true, "infinite": true,
"showNavigationArrows": "desktopOnly", "showNavigationArrows": "always",
"blockClass": "carousel" "blockClass": "carousel"
}, },
"children": [] "children": []

View File

@ -48,4 +48,8 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.flexRowContent .stretchChildrenWidth {
width: 100% !important;
padding: 0;
}
} }

View File

@ -30,3 +30,9 @@
line-height: 19px; line-height: 19px;
color: rgba(146, 146, 146, 0.48); color: rgba(146, 146, 146, 0.48);
} }
@media screen and (max-width: 1024px) and (min-width: 768px) {
.product-identifier--productReference {
justify-content: flex-start;
}
}

View File

@ -15,8 +15,21 @@
} }
}*/ }*/
.sliderLayoutContainer { .sliderLayoutContainer {
width: 95%; width: 100%;
padding: 0 16px 0 16px; padding: 0 16px 0 16px;
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
.sliderLayoutContainer .paginationDot {
background: black;
}
.sliderLayoutContainer .paginationDot--isActive {
width: 17px !important;
height: 17px !important;
background: white;
border: 0.5px solid black;
}
.sliderLayoutContainer .paginationDotsContainer {
display: flex;
align-items: center;
}

View File

@ -10,24 +10,23 @@
/* Grid breakpoints */ /* Grid breakpoints */
.container { .container {
max-width: 100%; max-width: 100%;
margin: 0 40px 0 40px !important; padding: 0 40px 0 40px;
} }
.productImageTag { .productImageTag {
max-height: none !important; max-height: none !important;
} }
/*
.productImagesGallerySlide {
.productImageTag {
width: 800px;
}
}
*/
.productImagesThumb { .productImagesThumb {
width: 100%;
max-width: 90px;
margin-right: 16px; margin-right: 16px;
} }
.thumbImg {
height: 90px;
}
.productBrand { .productBrand {
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
@ -270,6 +269,10 @@
line-height: 22px; line-height: 22px;
color: #929292; color: #929292;
} }
.productDescriptionContainer .productDescriptionText .container {
margin: 0 0 0 0 !important;
padding: 0 0 0 0 !important;
}
.newsletter { .newsletter {
background: black; background: black;
@ -376,4 +379,10 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.productBrand {
justify-content: flex-start;
}
.product-identifier--productReference {
justify-content: none;
}
} }

View File

@ -41,5 +41,9 @@
.flexRowContent { .flexRowContent {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.stretchChildrenWidth {
width: 100% !important;
padding: 0;
}
} }
} }

View File

@ -17,3 +17,8 @@
line-height: 19px; line-height: 19px;
color: rgba(146, 146, 146, 0.48); color: rgba(146, 146, 146, 0.48);
} }
@media screen and (max-width: 1024px) and (min-width: 768px) {
.product-identifier--productReference {
justify-content: flex-start;
}
}

View File

@ -5,10 +5,23 @@
} }
}*/ }*/
.sliderLayoutContainer { .sliderLayoutContainer {
width: 95%; width: 100%;
padding: 0 16px 0 16px; padding: 0 16px 0 16px;
display: flex; display: flex;
justify-content: center; justify-content: center;
.paginationDot {
background: black;
}
.paginationDot--isActive {
width: 17px !important;
height: 17px !important;
background: white;
border: 0.5px solid black;
}
.paginationDotsContainer {
display: flex;
align-items: center;
}
} }
@media screen and (max-width: 1024px) and (min-width: 768px) { @media screen and (max-width: 1024px) and (min-width: 768px) {
} }

View File

@ -1,21 +1,19 @@
.container { .container {
max-width: 100%; max-width: 100%;
margin: 0 40px 0 40px !important; padding: 0 40px 0 40px;
} }
.productImageTag { .productImageTag {
max-height: none !important; max-height: none !important;
} }
/*
.productImagesGallerySlide {
.productImageTag {
width: 800px;
}
}
*/
.productImagesThumb { .productImagesThumb {
width: 100%;
max-width: 90px;
margin-right: 16px; margin-right: 16px;
} }
.thumbImg {
height: 90px;
}
.productBrand { .productBrand {
display: flex; display: flex;
@ -257,6 +255,10 @@
color: #575757; color: #575757;
} }
.productDescriptionText { .productDescriptionText {
.container {
margin: 0 0 0 0 !important;
padding: 0 0 0 0 !important;
}
font-family: "Open Sans"; font-family: "Open Sans";
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
@ -369,4 +371,10 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.productBrand {
justify-content: flex-start;
}
.product-identifier--productReference {
justify-content: none;
}
} }