forked from M3-Academy/challenge-vtex-io
66 lines
1.4 KiB
SCSS
66 lines
1.4 KiB
SCSS
//product-images
|
|
|
|
.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%;
|
|
}
|
|
@media (max-width: 768px) and (min-width: 375px) {
|
|
padding: 0 40px;
|
|
}
|
|
}
|
|
|
|
//Botao add Cart
|
|
|
|
.flexRow {
|
|
.flexRowContent {
|
|
.stretchChildrenWidth {
|
|
:global(.vtex-button):first-child {
|
|
background: #000000;
|
|
padding: 12px 64px;
|
|
height: 49px;
|
|
border: none;
|
|
border-radius: 0;
|
|
@media (max-width: 768px) and (min-width: 375px) {
|
|
height: 74px;
|
|
margin-top: 10px;
|
|
}
|
|
: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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|