Skip to content

Commit

Permalink
adding complete set of link hover components and literals
Browse files Browse the repository at this point in the history
  • Loading branch information
brentmiller1973 committed Apr 6, 2020
1 parent 5e7a478 commit 7e38622
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/styled/linkHovers.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const LinkForegroundHoverCSSProp = `
*/
const LinkSVGHover = styled.a`
transition: fill 0.3s ease;
&:active svg, &:hover svg{
&:active svg path, &:hover svg path{
fill: ${(props) => lightenDarkenColor(props.primaryColor, 40)};
}
`;
Expand All @@ -77,7 +77,7 @@ const LinkSVGHover = styled.a`
*/
const LinkSVGHoverCSSProp = `
transition: fill 0.3s ease;
&:active svg, &:hover svg{
&:active svg path, &:hover svg path{
fill: ${(props) => lightenDarkenColor(props.primaryColor, 40)};
}
`;
Expand Down

0 comments on commit 7e38622

Please sign in to comment.