feat: adiciona o newsletter na página

This commit is contained in:
Leonardo Pereira Rocha 2023-02-05 13:15:08 -03:00
parent 51276d807a
commit a87b99fa92
5 changed files with 20 additions and 8 deletions

View File

@ -15,6 +15,7 @@
"postreleasy": "vtex publish --verbose" "postreleasy": "vtex publish --verbose"
}, },
"dependencies": { "dependencies": {
"vtex.store-newsletter": "1.x",
"vtex.store": "2.x", "vtex.store": "2.x",
"vtex.store-header": "2.x", "vtex.store-header": "2.x",
"vtex.product-summary": "2.x", "vtex.product-summary": "2.x",

View File

@ -157,7 +157,8 @@
background: none; background: none;
} }
[class*="listItemActive"] {
background: none; [class*="imageNormal"] {
border: none; max-width: 434.4px;
max-height: 434.4px;
} }

View File

@ -6,10 +6,19 @@
"tab-layout#home", "tab-layout#home",
"rich-text#textproducts", "rich-text#textproducts",
"list-context.product-list#demo1", "list-context.product-list#demo1",
"newsletter",
"product-questions-and-answers" "product-questions-and-answers"
] ]
}, },
"newsletter-form": {
"children": [
"newsletter-input-email",
"newsletter-input-name",
"newsletter-submit"
]
},
"rich-text#textproducts": { "rich-text#textproducts": {
"props": { "props": {
"textAlignment": "CENTER", "textAlignment": "CENTER",

View File

@ -8,5 +8,6 @@
/* Media Query M3 */ /* Media Query M3 */
/* Grid breakpoints */ /* Grid breakpoints */
.newsletter { .newsletter {
background: red; background: black;
color: white;
} }

View File

@ -1,3 +1,3 @@
.newsletter { .newsletter {
background: red; background: black;
} }