Skip to content

Commit 21def91

Browse files
committed
Fix plus icon color
1 parent bc5d04c commit 21def91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/components/widgets/add-photos.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ export const AddPhotosWidget = (props: {
5656
<Row className="flex-wrap gap-2">
5757
<label
5858
className={clsx(
59-
'bg-ink-200 hover:bg-ink-300 text-ink-0 dark:text-ink-500 hover:dark:text-ink-600 flex h-[100px] w-[100px] cursor-pointer flex-col items-center rounded-md transition-colors'
59+
'bg-canvas-50 hover:bg-ink-300 text-ink-0 dark:text-ink-500 hover:dark:text-ink-600 flex h-[100px] w-[100px] cursor-pointer flex-col items-center rounded-md transition-colors'
6060
)}
6161
htmlFor="photo-upload"
6262
>
63-
<PlusIcon className=" mx-auto my-auto h-16 w-16" />
63+
<PlusIcon className=" mx-auto my-auto h-16 w-16 text-gray-500" />
6464
</label>
6565
{uniq(buildArray(pinned_url, photo_urls))?.map((url, index) => {
6666
const isPinned = url === pinned_url

0 commit comments

Comments
 (0)