Skip to content

Commit

Permalink
Fix hover color of active favorites
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-va committed Nov 6, 2024
1 parent 1488545 commit 3940695
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@
fill: var(--fill-color);
}

:host.is-active {
--fill-color: var(--stroke-color);
:host:hover,
:host.is-active:hover {
--fill-color: #{lighten(#295969, 35%)};
}

:host:hover {
--fill-color: #{lighten(#295969, 20%)};
:host.is-active {
--fill-color: var(--stroke-color);
}

0 comments on commit 3940695

Please sign in to comment.