74 lines
1.6 KiB
CSS
74 lines
1.6 KiB
CSS
/*
|
|
0 - 600PX: Phone
|
|
600 - 900px: Table portrait
|
|
900 - 1200px: Tablet landscape
|
|
[1200 - 1800] is where our nortal styles apply
|
|
1800px + : Big desktop
|
|
*/
|
|
/* Media Query M3 */
|
|
/* Grid breakpoints */
|
|
.quantitySelectorContainer {
|
|
margin: 0;
|
|
}
|
|
.quantitySelectorContainer .quantitySelectorTitle {
|
|
display: none;
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper-container) {
|
|
border: 1px solid #ccc;
|
|
width: 128px;
|
|
height: 49px;
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__input) {
|
|
padding: 0;
|
|
border: none;
|
|
height: auto;
|
|
flex: 1;
|
|
color: #929292;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__minus-button-container) {
|
|
justify-content: center;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__plus-button-container) {
|
|
justify-content: center;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__plus-button) {
|
|
border: none;
|
|
width: auto !important;
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__minus-button) {
|
|
border: none;
|
|
width: auto !important;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__plus-button__text) {
|
|
color: #000;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__minus-button__text) {
|
|
color: #000;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
} |