51 lines
920 B
SCSS
51 lines
920 B
SCSS
|
.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;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
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;
|
||
|
}
|