Skip to content

Commit

Permalink
improve tag color background
Browse files Browse the repository at this point in the history
  • Loading branch information
nl32 committed Oct 22, 2024
1 parent 053c3a1 commit 035310d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/club/directory/TagFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const TagFilter = ({ tags }: { tags: string[] }) => {
className={`${
selectedTag === tag
? 'bg-blue-primary text-white hover:bg-blue-700'
: 'bg-gray-100 text-slate-600 hover:bg-gray-200'
: 'bg-white text-slate-600 hover:bg-gray-200'
} whitespace-nowrap rounded-3xl px-8 py-4 text-sm font-extrabold transition-colors duration-200 focus:outline-none md:text-xs`}
onClick={() => setSelected(tag)}
>
Expand Down

0 comments on commit 035310d

Please sign in to comment.