2023-01-20 17:48:56 +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-02-02 00:49:08 +00:00
|
|
|
.QuantitySelectorContainer {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
2023-01-26 00:55:10 +00:00
|
|
|
:global(.vtex-numeric-stepper__minus-button),
|
|
|
|
:global(.vtex-numeric-stepper__plus-button) {
|
|
|
|
background-color: #fff;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: #000000;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.vtex-numeric-stepper__minus-button) {
|
|
|
|
border-top: 1px;
|
|
|
|
border-left: 1px;
|
|
|
|
border-bottom: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: #cccccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.vtex-numeric-stepper__plus-button) {
|
|
|
|
border-top: 1px;
|
|
|
|
border-right: 1px;
|
|
|
|
border-bottom: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: #cccccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.vtex-numeric-stepper__input) {
|
2023-02-02 00:49:08 +00:00
|
|
|
width: 32px;
|
2023-01-26 00:55:10 +00:00
|
|
|
border-top: 1px;
|
|
|
|
border-bottom: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-right: none;
|
|
|
|
border-left: none;
|
|
|
|
border-color: #cccccc;
|
|
|
|
color: #929292;
|
|
|
|
outline: 0;
|
2023-01-20 17:48:56 +00:00
|
|
|
}
|