Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .jules/palette.md
Empty file.
1 change: 1 addition & 0 deletions app/wishlist/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export default function WishlistPage() {
<Button
variant="ghost"
size="icon"
aria-label="Remove item from wishlist"
className="absolute top-3 right-3 h-8 w-8 bg-background/80 hover:bg-background backdrop-blur-sm"
onClick={() => removeItem(item.id)}
>
Expand Down
3 changes: 3 additions & 0 deletions components/features/cart-drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ export function CartDrawer() {
<Button
variant="outline"
size="icon"
aria-label="Decrease quantity"
className="h-7 w-7 rounded-none"
onClick={() => updateQuantity(item.id, item.size, item.quantity - 1, item.color, item.comboGroupId)}
>
Expand All @@ -124,6 +125,7 @@ export function CartDrawer() {
<Button
variant="outline"
size="icon"
aria-label="Increase quantity"
className="h-7 w-7 rounded-none"
onClick={() => updateQuantity(item.id, item.size, item.quantity + 1, item.color, item.comboGroupId)}
>
Expand All @@ -134,6 +136,7 @@ export function CartDrawer() {
<Button
variant="ghost"
size="icon"
aria-label="Remove item"
className="h-7 w-7 self-start text-muted-foreground hover:text-foreground"
onClick={() => removeItem(item.id, item.size, item.color, item.comboGroupId)}
>
Expand Down