fix cart items height
This commit is contained in:
@@ -40,6 +40,7 @@
|
||||
box-shadow: none;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.removeButton {
|
||||
|
||||
@@ -109,7 +109,7 @@ export default function CartActionsButtons({ item }: { item: CartItem }) {
|
||||
min={1}
|
||||
max={100}
|
||||
value={item.quantity || 1}
|
||||
onChange={(value) =>
|
||||
onChange={(value: number) =>
|
||||
dispatch(
|
||||
updateQuantity({
|
||||
id: item.id,
|
||||
|
||||
Reference in New Issue
Block a user