Skip to content

Commit

Permalink
chore: take off Expander active/focus css states (design request)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehenson committed May 8, 2024
1 parent 582541d commit 711dbb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Expander.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Expander = ({
onClick={() => setExpanded(!expanded)}
onKeyDown={(e) => e.key === "Enter" && setExpanded(!expanded)}
tabIndex={0}
className="mt-16 cursor-pointer font-bold text-gui-blue-default-light hover:text-gui-blue-hover-light active:text-gui-blue-active-light focus:text-gui-blue-focus"
className="mt-16 cursor-pointer font-bold text-gui-blue-default-light hover:text-gui-blue-hover-light"
>
{expanded ? "View less -" : "View all +"}
</div>
Expand Down

0 comments on commit 711dbb7

Please sign in to comment.