2023-01-24 14:33:36 +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 */
|
|
|
|
.quantitySelectorTitle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quantitySelectorContainer {
|
|
|
|
height: 49px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__input), .quantitySelectorContainer :global(.vtex-numeric-stepper__minus-button), .quantitySelectorContainer :global(.vtex-numeric-stepper__plus-button) {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper-container) {
|
|
|
|
height: 49px;
|
|
|
|
border: 1px solid #CCCCCC;
|
|
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__input) {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: #929292;
|
|
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__minus-button), .quantitySelectorContainer :global(.vtex-numeric-stepper__plus-button) {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: #000000;
|
2023-01-25 12:52:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.quantitySelectorContainer {
|
|
|
|
width: 128px !important;
|
|
|
|
}
|
2023-01-24 14:33:36 +00:00
|
|
|
}
|