From 7e386224fe78487836868508d15f01fbfdbbc42c Mon Sep 17 00:00:00 2001 From: Brent Miller Date: Mon, 6 Apr 2020 16:56:24 -0500 Subject: [PATCH] adding complete set of link hover components and literals --- js/styled/linkHovers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)}; } `;