67 lines
1.2 KiB
CSS
67 lines
1.2 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 */
|
|
.quantitySelectorStepper {
|
|
display: flex;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.quantitySelectorTitle {
|
|
display: none;
|
|
}
|
|
|
|
.hideDecorators {
|
|
border: 1px solid red;
|
|
border-left: none;
|
|
border-right: none;
|
|
height: 49px;
|
|
}
|
|
|
|
.quantitySelectorContainer--quantidade {
|
|
margin-right: 10px;
|
|
margin-bottom: 16px;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
@media screen and (max-width: 768px) {
|
|
.quantitySelectorContainer--quantidade {
|
|
margin: 0 0 10px 0;
|
|
}
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__input) {
|
|
height: 49px;
|
|
width: 32px;
|
|
border-right: 0;
|
|
border-left: 0;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #929292;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__plus-button) {
|
|
height: 49px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #000000;
|
|
border-radius: 0%;
|
|
}
|
|
|
|
:global(.vtex-numeric-stepper__minus-button) {
|
|
background-color: transparent;
|
|
height: 49px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #000000;
|
|
border-radius: 0%;
|
|
} |