53 lines
1.2 KiB
CSS
53 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 */
|
|
.quantitySelectorContainer {
|
|
margin-bottom: 0;
|
|
margin-right: 16px;
|
|
}
|
|
@media only screen and (max-width: 767px) {
|
|
.quantitySelectorContainer {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__input) {
|
|
height: 49px;
|
|
width: 31px;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
border-left: 0;
|
|
border-right: 0;
|
|
border-top: 1px solid #c4c4c4;
|
|
border-bottom: 1px solid #c4c4c4;
|
|
color: #929292;
|
|
}
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__plus-button) {
|
|
height: 49px;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
border-right: 1px solid #c4c4c4;
|
|
border-bottom: 1px solid #c4c4c4;
|
|
border-top: 1px solid #c4c4c4;
|
|
background: #fff;
|
|
color: #000;
|
|
}
|
|
.quantitySelectorContainer :global(.vtex-numeric-stepper__minus-button) {
|
|
height: 49px;
|
|
width: 10px;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
border-left: 1px solid #c4c4c4;
|
|
border-bottom: 1px solid #c4c4c4;
|
|
border-top: 1px solid #c4c4c4;
|
|
background: #fff;
|
|
color: #000;
|
|
}
|
|
.quantitySelectorContainer .quantitySelectorTitle {
|
|
display: none;
|
|
} |