54 lines
920 B
SCSS
54 lines
920 B
SCSS
// Quantidade de produtos
|
|
|
|
// Container
|
|
|
|
.QuantitySelectorContainer {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
// Botões
|
|
|
|
:global(.vtex-numeric-stepper__minus-button),
|
|
:global(.vtex-numeric-stepper__plus-button) {
|
|
background-color: $white;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: $black;
|
|
border-radius: 0;
|
|
}
|
|
|
|
// Botão de -
|
|
|
|
:global(.vtex-numeric-stepper__minus-button) {
|
|
border-top: 1px;
|
|
border-left: 1px;
|
|
border-bottom: 1px;
|
|
border-style: solid;
|
|
border-color: $gray-1000;
|
|
}
|
|
|
|
// Botão de +
|
|
|
|
:global(.vtex-numeric-stepper__plus-button) {
|
|
border-top: 1px;
|
|
border-right: 1px;
|
|
border-bottom: 1px;
|
|
border-style: solid;
|
|
border-color: $gray-1000;
|
|
}
|
|
|
|
// Input
|
|
|
|
:global(.vtex-numeric-stepper__input) {
|
|
width: 32px;
|
|
border-top: 1px;
|
|
border-bottom: 1px;
|
|
border-style: solid;
|
|
border-right: none;
|
|
border-left: none;
|
|
border-color: $gray-1000;
|
|
color: $gray-500;
|
|
outline: 0;
|
|
}
|