feat: home adicionando o css da img e props dos product

This commit is contained in:
PatrickSouza 2023-01-24 18:14:32 -03:00
parent c9a06914fb
commit e2106d1552
7 changed files with 37 additions and 10 deletions

View File

@ -87,6 +87,8 @@
},
"product-images": {
"props": {
"thumbnailMaxHeight": 90,
"thumbnailsOrientation": "horizontal",
"aspectRatio": {
"desktop": "auto",
"phone": "16:9"

View File

@ -8,9 +8,9 @@
/* Media Query M3 */
/* Grid breakpoints */
.html {
background-color: red;
background-color: blue;
}
.html--pdp-breadcrumb {
background-color: green;
background-color: red;
}

View File

@ -0,0 +1,12 @@
/*
0 - 600PX: Phone
600 - 900px: Table portrait
900 - 1200px: Tablet landscape
[1200 - 1800] is where our nortal styles apply
1800px + : Big desktop
*/
/* Media Query M3 */
/* Grid breakpoints */
.container {
background-color: aqua;
}

View File

@ -7,6 +7,12 @@
*/
/* Media Query M3 */
/* Grid breakpoints */
.newsletter {
background: red;
.productImageTag--main {
max-height: unset !important;
}
.productImagesThumb {
height: auto !important;
width: 90px !important;
margin-right: 16px !important;
}

View File

@ -1,8 +1,7 @@
.html {
background-color: red;
background-color: blue;
}
.html--pdp-breadcrumb {
background-color: green;
background-color: red;
}

View File

@ -0,0 +1,3 @@
.container {
background-color: aqua;
}

View File

@ -1,3 +1,8 @@
.newsletter{
background: red;
}
.productImageTag--main {
max-height: unset !important;
}
.productImagesThumb {
height: auto !important;
width: 90px !important;
margin-right: 16px !important;
}