41 lines
845 B
SCSS
41 lines
845 B
SCSS
.quantitySelectorTitle {
|
|
display: none;
|
|
}
|
|
|
|
.quantitySelectorContainer{
|
|
height: 49px;
|
|
margin: 0;
|
|
|
|
:global(.vtex-numeric-stepper__input), :global(.vtex-numeric-stepper__minus-button), :global(.vtex-numeric-stepper__plus-button){
|
|
width: 100%;
|
|
height: 100%;
|
|
background: transparent;
|
|
border: 0;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper-container){
|
|
height: 49px;
|
|
border: 1px solid #CCCCCC;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__input){
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #929292;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__minus-button), :global(.vtex-numeric-stepper__plus-button){
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #000000;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.quantitySelectorContainer{
|
|
width: 128px !important;
|
|
}
|
|
}
|