Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function WishContentClient() {
>
<span className="block size-3">
{isAllSelected ? (
<CheckboxSelectedIconFill className="size-3 text-uac-light" />
<CheckboxSelectedIconFill className="size-3 text-bg-accent" />
) : (
<span className="block size-3 rounded-[2.4px] border-[0.84px] border-gray-400" />
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function WishGrid({ items, isDeleteMode = false, selectedIds, onToggleSelect }:
<div className={`pointer-events-none absolute top-0 left-0 right-0 z-[11] aspect-[201/166] bg-black/20 transition-opacity duration-200 ${isSelected ? 'opacity-100' : 'opacity-0'}`} />
<span className="pointer-events-none absolute top-3 left-3 z-[12] block size-5">
{isSelected ? (
<CheckboxSelectedIconFill className="size-5 text-uac-light" />
<CheckboxSelectedIconFill className="size-5 text-bg-accent" />
) : (
<CheckboxEmptyIconFill className="size-5 text-black/8" />
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function WishSelectCard({ name, price, imageUrl, sourcePlatform, isSelected, onS
<WishCard name={name} price={price} imageUrl={imageUrl} sourcePlatform={sourcePlatform} />
<span className="pointer-events-none absolute top-3 left-3 z-10 block size-5">
{isSelected ? (
<CheckboxSelectedIconFill className="size-5 text-uac-light" />
<CheckboxSelectedIconFill className="size-5 text-bg-accent" />
) : (
<CheckboxEmptyIconFill className="size-5 text-black/8" />
)}
Expand Down
Loading