18 lines
386 B
CSS
18 lines
386 B
CSS
.cart-item-image{
|
|
max-width:100px;
|
|
}
|
|
|
|
.cart-item-qty{
|
|
width:70px;
|
|
}
|
|
|
|
input::-webkit-outer-spin-button,
|
|
input::-webkit-inner-spin-button {
|
|
/* display: none; <- Crashes Chrome on hover */
|
|
-webkit-appearance: none;
|
|
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
|
|
}
|
|
|
|
input[type=number] {
|
|
-moz-appearance:textfield; /* Firefox */
|
|
} |