forked from M3-Academy/challenge-vtex-io
29 lines
830 B
CSS
29 lines
830 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 */
|
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap%27");
|
|
/* Grid breakpoints */
|
|
.quantitySelectorStepper--addToCartQuantity :global(.vtex-numeric-stepper__plus-button) {
|
|
border-radius: 0;
|
|
border: 1px solid #cccccc;
|
|
border-left: none;
|
|
}
|
|
|
|
.quantitySelectorStepper--addToCartQuantity :global(.vtex-numeric-stepper__minus-button) {
|
|
border-radius: 0;
|
|
border: 1px solid #cccccc;
|
|
border-right: none;
|
|
background: transparent;
|
|
}
|
|
|
|
.quantitySelectorStepper--addToCartQuantity :global(.vtex-numeric-stepper__input) {
|
|
border-radius: 0;
|
|
border: 1px solid #cccccc;
|
|
border-left: 0;
|
|
border-right: 0;
|
|
} |