57 lines
1.0 KiB
CSS
57 lines
1.0 KiB
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 */
|
|
.quantitySelectorContainer {
|
|
margin: 0;
|
|
}
|
|
|
|
.quantitySelectorTitle {
|
|
font-size: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.quantitySelectorStepper {
|
|
height: 49px;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper-container) {
|
|
height: 49px;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__input) {
|
|
border: 1px solid #cccccc;
|
|
border-width: 1px 0;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
text-align: center;
|
|
color: #929292;
|
|
height: 100%;
|
|
width: 76px;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__minus-button),
|
|
:global(.vtex-numeric-stepper__plus-button) {
|
|
border: 1px solid #cccccc;
|
|
border-radius: 0;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #000000;
|
|
height: 100%;
|
|
width: 26px !important;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__minus-button) {
|
|
border-width: 1px 0 1px 1px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__plus-button) {
|
|
border-width: 1px 1px 1px 0;
|
|
justify-content: flex-start;
|
|
} |