Skip to content

Commit

Permalink
enhance: Change add tag options to have neutral background and text (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
navorite committed Dec 10, 2023
1 parent e41d2a3 commit e1d880c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/lib/components/modals/TagsModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,8 @@
>
{#if tags}
{#each Object.keys(tags) as tag}
<option
style:background-color={tags[tag]?.bgColor}
style:color={tags[tag]?.textColor}
value={tag}>{tag}</option
<option class="bg-neutral-6 text-neutral-content" value={tag}
>{tag}</option
>
{/each}
{/if}
Expand Down

0 comments on commit e1d880c

Please sign in to comment.