52 lines
854 B
SCSS
52 lines
854 B
SCSS
.quantitySelectorStepper {
|
|
display: flex;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.quantitySelectorTitle {
|
|
display: none;
|
|
}
|
|
|
|
.hideDecorators {
|
|
border-left: none;
|
|
border-right: none;
|
|
height: 49px;
|
|
}
|
|
|
|
.quantitySelectorContainer--quantidade {
|
|
padding: 0;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__input) {
|
|
height: 49px;
|
|
width: 32px;
|
|
border-right: 0;
|
|
border-left: 0;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #929292;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__plus-button) {
|
|
height: 49px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: $color-black-100;
|
|
border-radius: 0%;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__minus-button) {
|
|
background-color: transparent;
|
|
height: 49px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: $color-black-100;
|
|
border-radius: 0%;
|
|
}
|