26 lines
420 B
SCSS
26 lines
420 B
SCSS
.flexRowContent {
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.flexRowContent--buy-button-container {
|
|
margin-bottom: 16px;
|
|
:global(.vtex-button) {
|
|
background-color: black;
|
|
border: none;
|
|
height: 50px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
.flexRow--buy-box {
|
|
.stretchChildrenWidth:nth-child(2n) {
|
|
width: 100% !important;
|
|
}
|
|
}
|