develop #1

Merged
PatrickSouzaSilva merged 14 commits from develop into master 2023-02-11 02:49:46 +00:00
7 changed files with 37 additions and 10 deletions
Showing only changes of commit e2106d1552 - Show all commits

View File

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

View File

@ -8,9 +8,9 @@
/* Media Query M3 */ /* Media Query M3 */
/* Grid breakpoints */ /* Grid breakpoints */
.html { .html {
background-color: red; background-color: blue;
} }
.html--pdp-breadcrumb { .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 */ /* Media Query M3 */
/* Grid breakpoints */ /* Grid breakpoints */
.newsletter { .productImageTag--main {
background: red; max-height: unset !important;
}
.productImagesThumb {
height: auto !important;
width: 90px !important;
margin-right: 16px !important;
} }

View File

@ -1,8 +1,7 @@
.html { .html {
background-color: red; background-color: blue;
} }
.html--pdp-breadcrumb { .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{ .productImageTag--main {
background: red; max-height: unset !important;
} }
.productImagesThumb {
height: auto !important;
width: 90px !important;
margin-right: 16px !important;
}