Hello,
After playing with the code for a while I was able to reduce the width of the quantity buttons of my cart drawer, but I haven’t managed to reduce the size. Any ideas?
My website is jajamoon.com and pasw is skwats
This is the code I added to make the buttons with less width;
.drawer.active .quantity {
width: calc(9rem / var(–font-body-scale) + var(–inputs-border-width) * 2);
}
.drawer.active .quantity__button {
width: calc(3rem / var(–font-body-scale));
}
.drawer.active .quantity__input {
width: 100%;
max-width: 29px;
flex-grow: 1;
-webkit-appearance: none;
appearance: none;
}
