59 lines
1.0 KiB
CSS
59 lines
1.0 KiB
CSS
/*
|
|
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 */
|
|
/* Grid breakpoints */
|
|
.stretchChildrenWidth {
|
|
padding: 0;
|
|
}
|
|
|
|
.flexCol--infos {
|
|
padding-left: 32px;
|
|
}
|
|
|
|
.flexRowContent {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
@media screen and (max-width: 1024px) {
|
|
.flexRowContent .stretchChildrenWidth {
|
|
width: initial;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
.flexRowContent--product-main {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.flexRowContent--identifier {
|
|
text-align: end;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: end;
|
|
}
|
|
@media screen and (max-width: 1024px) {
|
|
.flexRowContent--identifier {
|
|
text-align: start;
|
|
}
|
|
}
|
|
|
|
.flexRow--product-main {
|
|
padding: 0 40px;
|
|
}
|
|
@media screen and (max-width: 1024px) {
|
|
.flexRow--product-main .stretchChildrenWidth {
|
|
width: 100% !important;
|
|
padding-bottom: 24px;
|
|
}
|
|
}
|
|
|
|
.flexColChild--infos :global(.vtex-button) {
|
|
background-color: black !important;
|
|
border: none;
|
|
} |