38 lines
674 B
SCSS
38 lines
674 B
SCSS
.quantitySelectorTitle{
|
|
display: none;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__minus-button){
|
|
background-color: $color-white;
|
|
}
|
|
|
|
.quantitySelectorContainer{
|
|
width: 100%;
|
|
height: 49px;
|
|
@include mq (sm, max) {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper-container){
|
|
height: 49px;
|
|
}
|
|
:global(.vtex-numeric-stepper__input){
|
|
// height: 49px !important;
|
|
width: 48px;
|
|
border-left: none;
|
|
border-right: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
:global(.vtex-numeric-stepper__plus-button-container){
|
|
height: 49px;
|
|
width: 40px;
|
|
}
|
|
:global(.vtex-numeric-stepper__minus-button-container){
|
|
height: 49px;
|
|
width: 40px;
|
|
}
|
|
}
|
|
|
|
|