feat: adiciona prateleira

This commit is contained in:
Rafael Sampaio de Oliveira 2023-01-30 16:05:21 -03:00
parent 4058a2b0b9
commit 236fabddf6
8 changed files with 102 additions and 75 deletions

View File

@ -4,11 +4,9 @@ import styles from "./styles.module.css";
const PixPrice = () => {
useEffect(() => {
const inputCep = document.querySelectorAll(".vtex-address-form-4-x-input");
const inputCep = document.querySelector(".vtex-address-form-4-x-input");
// inputCep.setAttribute('placeholder', 'Digite seu CEP');
console.log(inputCep);
inputCep?.setAttribute("placeholder", "Digite seu CEP");
});
const productContextValue = useProduct();

View File

@ -7,7 +7,9 @@
"html#productDescription",
// "flex-layout.row#specifications-title",
// "product-specification-group#table",
"shelf.relatedProducts",
// "shelf.relatedProducts",
"rich-text#shelfTitle",
"list-context.product-list#shelfProducts",
"product-questions-and-answers"
]
},
@ -223,5 +225,27 @@
"Pinterest": false
}
}
},
"rich-text#shelfTitle": {
"props": {
"textAlignment": "CENTER",
"textPosition": "CENTER",
"text": "# Você também pode gostar:",
"blockClass": "shelfTitleText"
}
},
"product-summary.shelf#shelfProducts": {
"children": [
"product-summary-image",
"product-summary-name",
"product-price"
]
},
"list-context.product-list#shelfProducts": {
"blocks": ["product-summary.shelf#shelfProducts"],
"children": ["slider-layout#demo-products"]
}
}

View File

@ -1,42 +1,16 @@
.skuSelectorContainer--quickview .skuSelectorItemImage .frameAround, .skuSelectorContainer--quickview .skuSelectorItemImage .skuSelectorInternalBox {
border-radius: 50%;
}
.container :global(.vtex-modal-layout-0-x-triggerContainer) {
opacity: 0;
transition: opacity 200ms ease-in-out;
}
.container:hover :global(.vtex-modal-layout-0-x-triggerContainer) {
opacity: 1;
}
@media screen and (max-width: 40em) {
.container :global(.vtex-modal-layout-0-x-triggerContainer) {
display: none;
}
}
.nameContainer {
justify-content: start;
padding-top: 1rem;
padding-bottom: 1rem;
}
.brandName {
font-weight: 600;
font-size: 18px;
color: #2E2E2E;
}
.container {
text-align: start;
}
.imageContainer {
text-align: center;
}
.image {
border-radius: 0.25rem;
}
/*
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 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap%27");
/* Grid breakpoints */
.imageWrapper {
height: 314px;
display: flex;
justify-content: center;
align-items: center;
}

View File

@ -6,7 +6,11 @@
1800px + : Big desktop
*/
/* Media Query M3 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap%27");
/* Grid breakpoints */
.paragraph--product-installments {
margin: 0;
.headingLevel1--shelfTitleText {
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 38px;
}

View File

@ -1,31 +1,28 @@
.sliderLayoutContainer {
/*
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 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap%27");
/* Grid breakpoints */
.paginationDotsContainer--shelf {
display: flex;
justify-content: center;
align-items: center;
}
.sliderLayoutContainer--carousel {
background-color: #F0F0F0;
min-height: 450px;
.paginationDot--shelf {
background: #292929;
width: 10px !important;
height: 10px !important;
}
.sliderTrackContainer {
max-width: 100%;
}
.paginationDotsContainer {
margin-top: .5rem;
margin-bottom: .5rem;
}
.layoutContainer--shelf {
margin-top: 20px;
margin-bottom: 20px;
max-width: 96rem;
min-height: 550px;
}
.slide--shelf {
margin-bottom: 25px;
padding-left: .5rem;
padding-right: .5rem;
min-height: 550px;
}
.paginationDot--shelf--isActive {
width: 17px !important;
height: 17px !important;
border: 0.5px solid #292929;
background: transparent;
}

View File

@ -0,0 +1,6 @@
.imageWrapper {
height: 314px;
display: flex;
justify-content: center;
align-items: center;
}

View File

@ -0,0 +1,6 @@
.headingLevel1--shelfTitleText {
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 38px;
}

View File

@ -0,0 +1,18 @@
.paginationDotsContainer--shelf {
display: flex;
justify-content: center;
align-items: center;
}
.paginationDot--shelf {
background: $color-black;
width: 10px !important;
height: 10px !important;
}
.paginationDot--shelf--isActive {
width: 17px !important;
height: 17px !important;
border: 0.5px solid $color-black;
background: transparent;
}