36 lines
840 B
CSS
36 lines
840 B
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 */
|
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
|
|
@media screen and (min-width: 768px) {
|
|
.flexRowContent--btn-product {
|
|
margin: 0 10px;
|
|
}
|
|
}
|
|
|
|
.flexRow--btn-product {
|
|
width: 100%;
|
|
}
|
|
.flexRow--btn-product :global(.vtex-button) {
|
|
background-color: black;
|
|
border: 1px solid black;
|
|
border-radius: 0;
|
|
padding: 12px;
|
|
margin: 0;
|
|
}
|
|
.flexRow--btn-product :global(.vtex-button):hover {
|
|
background-color: rgb(36, 36, 36);
|
|
}
|
|
.flexRow--btn-product .flexRow--btn-product--botao-adicionar {
|
|
font-family: "Open Sans", sans-serif;
|
|
}
|
|
|
|
.flexRowContent--container-main {
|
|
padding: 0 40px;
|
|
} |