Skip to content

Commit 55e603a

Browse files
author
Max Shkutnyk
committed
Update hover color for tags
1 parent 81a22dd commit 55e603a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fern/components/cookbooks/TagButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface TagButtonProps {
88

99
const tagButtonClass = "px-2 py-1 text-[12px] rounded-full transition-colors cursor-pointer font-normal";
1010
const selectedTagClass = "bg-[#333293] text-white hover:bg-[#333293]/90";
11-
const unselectedTagClass = "bg-white text-[#666666] shadow-[0_0_0_1px_#E5E5E5] outline outline-1 outline-[#E5E5E5] hover:bg-gray-50";
11+
const unselectedTagClass = "bg-white text-[#666666] shadow-[0_0_0_1px_#E5E5E5] outline outline-1 outline-[#E5E5E5] hover:bg-[#d4d4f0] hover:text-[#4d4d4d]";
1212

1313
export const TagButton: React.FC<TagButtonProps> = ({ tag, isSelected, onClick }) => (
1414
<button

0 commit comments

Comments
 (0)