challenge-vtex-io-ana-carol.../styles/sass/pages/product/flex-layout/vtex.flex-layout.scss

59 lines
1.2 KiB
SCSS
Raw Normal View History

//product-images
2023-01-24 19:33:02 +00:00
.flexRowContent {
padding: 0;
margin: 0;
column-gap: 32px;
}
.stretchChildrenWidth {
padding: 0;
@media (max-width: 1920px) and (min-width: 1024px) {
width: 100% !important;
}
}
.flexCol--stack-layout-content {
width: 100% !important;
}
.flexRowContent--product-main-content {
@media (max-width: 1920px) and (min-width: 1024px) {
display: grid;
grid-template-columns: 48.819% 48.819%;
}
@media (max-width: 1025px) and (min-width: 768px) {
display: grid;
grid-template-columns: 100%;
}
2023-01-24 19:33:02 +00:00
}
//Botao add Cart
.flexRow {
.flexRowContent {
.stretchChildrenWidth {
:global(.vtex-button):first-child {
background: #000000;
padding: 12px 64px;
height: 49px;
border: none;
border-radius: 0;
:global(.vtex-button__label)::before {
content: "ADICIONAR À SACOLA";
font-family: "Open Sans", sans-serif;
color: #ffffff;
font-weight: 400;
font-size: 18px;
line-height: 25px;
}
:global(.vtex-button__label) {
:global(.vtex-add-to-cart-button-0-x-buttonDataContainer) {
display: none;
}
}
}
}
}
}