We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81a22dd commit 55e603aCopy full SHA for 55e603a
fern/components/cookbooks/TagButton.tsx
@@ -8,7 +8,7 @@ interface TagButtonProps {
8
9
const tagButtonClass = "px-2 py-1 text-[12px] rounded-full transition-colors cursor-pointer font-normal";
10
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";
+const unselectedTagClass = "bg-white text-[#666666] shadow-[0_0_0_1px_#E5E5E5] outline outline-1 outline-[#E5E5E5] hover:bg-[#d4d4f0] hover:text-[#4d4d4d]";
12
13
export const TagButton: React.FC<TagButtonProps> = ({ tag, isSelected, onClick }) => (
14
<button
0 commit comments