challenge-vtex-io-andrea-ma.../styles/sass/pages/product/vtex.product-quantity.scss

64 lines
1.4 KiB
SCSS

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");
.quantitySelectorContainer {
margin: 0;
@include mq(md, max) {
margin-bottom: 10px;
}
:global(.vtex-numeric-stepper-container) {
padding: 12.5px 15px;
border: 1px solid #989898;
}
:global(.vtex-numeric-stepper__input) {
width: 76px;
height: fit-content;
border: 0;
padding: 0;
color: #929292;
}
:global(.vtex-numeric-stepper__plus-button),
:global(.vtex-numeric-stepper__minus-button) {
width: fit-content !important;
height: fit-content;
border: 0;
background: transparent;
}
:global(.vtex-numeric-stepper__input),
:global(.vtex-numeric-stepper__plus-button__text),
:global(.vtex-numeric-stepper__minus-button__text) {
font-family: "Open Sans";
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 22px;
}
:global(.vtex-numeric-stepper__plus-button__text),
:global(.vtex-numeric-stepper__minus-button__text) {
font-size: 0;
}
:global(.vtex-numeric-stepper__plus-button)::after {
content: "+";
width: 10px;
height: 12px;
display: flex;
align-items: center;
color: #000000;
}
:global(.vtex-numeric-stepper__minus-button)::before {
content: "-";
width: 10px;
height: 12px;
display: flex;
align-items: center;
color: #000000;
}
}