51 lines
897 B
SCSS
51 lines
897 B
SCSS
// .flexRowContent {
|
|
// @media screen and (max-width: 1024px) {
|
|
// display: flex;
|
|
// flex-direction: column;
|
|
// }
|
|
// }
|
|
.flexRowContent--product-main-stack {
|
|
padding: 0 30px;
|
|
margin-bottom: 0;
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.stretchChildrenWidth {
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
}
|
|
.flexRowContent--main-header-mobile {
|
|
@media screen and (max-width: 1024px) {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
.flexCol {
|
|
position: relative;
|
|
}
|
|
|
|
.flexRowContent--btn-product {
|
|
@media screen and (min-width: 768px) {
|
|
margin: 0 10px;
|
|
}
|
|
}
|
|
.flexRow--btn-product {
|
|
width: 100%;
|
|
|
|
:global(.vtex-button) {
|
|
background-color: black;
|
|
border: 1px solid black;
|
|
border-radius: 0;
|
|
font-family: "Open Sans";
|
|
padding: 12px;
|
|
|
|
&:hover {
|
|
background-color: rgb(36, 36, 36);
|
|
}
|
|
}
|
|
}
|