fix cart items height

This commit is contained in:
2025-12-16 00:57:49 +03:00
parent 7b47d47e78
commit 8d5351d82b
4 changed files with 33 additions and 31 deletions

View File

@@ -40,6 +40,7 @@
box-shadow: none;
font-size: 16px;
font-weight: 600;
padding: 0;
}
.removeButton {

View File

@@ -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,