diff --git a/js/styled/linkHovers.js b/js/styled/linkHovers.js index ba4d29a..fa0f633 100644 --- a/js/styled/linkHovers.js +++ b/js/styled/linkHovers.js @@ -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)}; } `; @@ -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)}; } `;