Skip to content
Snippets Groups Projects
Commit 5577cb4d authored by Kyle Doherty's avatar Kyle Doherty Committed by GitHub
Browse files

sync favorited item star color (#5086)

* sync favorited star color

* tweak color classes
parent ad26ab10
Branches
Tags
No related merge requests found
......@@ -133,9 +133,9 @@ const ItemBody = pure(({ entity, id, name, description, labels, favorite, collec
<Tooltip tooltip={favorite ? "Unfavorite" : "Favorite"}>
<Icon
className={cx(
"flex cursor-pointer text-brand-hover transition-color",
{"hover-child text-light-blue": !favorite},
{"visible text-brand": favorite}
"flex cursor-pointer",
{"hover-child text-light-blue text-brand-hover": !favorite},
{"visible text-gold": favorite}
)}
name={favorite ? "star" : "staroutline"}
size={ITEM_ICON_SIZE}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment