2023-01-23 23:10:06 +00:00
|
|
|
/*
|
|
|
|
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 */
|
2023-01-25 00:36:12 +00:00
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
|
2023-01-23 23:10:06 +00:00
|
|
|
.flexRowContent {
|
|
|
|
position: relative;
|
2023-02-07 13:51:12 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2023-02-09 16:51:10 +00:00
|
|
|
gap: 32px;
|
2023-01-25 00:36:12 +00:00
|
|
|
}
|
|
|
|
|
2023-01-29 01:41:42 +00:00
|
|
|
.flexRowContent--container-compra {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.flexRowContent--container-compra .stretchChildrenWidth {
|
|
|
|
height: 49px;
|
|
|
|
}
|
|
|
|
|
2023-01-25 00:36:12 +00:00
|
|
|
.flexRowContent--preco {
|
|
|
|
margin: 0;
|
2023-02-09 16:51:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.stretchChildrenWidth {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2023-02-10 15:33:41 +00:00
|
|
|
.flexColChild--productRating {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flexRowContent--shelf-product-row {
|
|
|
|
padding-bottom: 70px;
|
|
|
|
}
|
|
|
|
|
2023-02-09 20:28:24 +00:00
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.stretchChildrenWidth {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
.flexRowContent--container-compra .stretchChildrenWidth {
|
|
|
|
height: 74px;
|
|
|
|
}
|
|
|
|
.flexRowContent--container-compra .stretchChildrenWidth :global(.vtex-button) {
|
|
|
|
height: 74px;
|
|
|
|
}
|
|
|
|
}
|
2023-02-09 16:51:10 +00:00
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
.flexRowContent--conteudo-principal {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.flexRowContent--conteudo-principal .stretchChildrenWidth {
|
|
|
|
width: 100% !important;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.flexCol {
|
|
|
|
position: relative;
|
|
|
|
}
|
2023-01-23 23:10:06 +00:00
|
|
|
}
|