29 lines
564 B
SCSS
29 lines
564 B
SCSS
|
.quantitySelectorTitle {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.quantitySelectorStepper {
|
||
|
:global(.vtex-numeric-stepper__input) {
|
||
|
border-top: 2px solid #cccccc;
|
||
|
border-left: none;
|
||
|
border-right: none;
|
||
|
border-bottom: 2px solid #cccccc;
|
||
|
color: black;
|
||
|
height: 50px;
|
||
|
}
|
||
|
|
||
|
:global(.vtex-numeric-stepper__plus-button) {
|
||
|
color: black;
|
||
|
border-color: #cccccc;
|
||
|
border-radius: 0;
|
||
|
height: 50px;
|
||
|
}
|
||
|
|
||
|
:global(.vtex-numeric-stepper__minus-button) {
|
||
|
background-color: white;
|
||
|
border-color: #cccccc;
|
||
|
border-radius: 0;
|
||
|
height: 50px;
|
||
|
}
|
||
|
}
|