From 5edf498a3f32ca932d6ea9b3b156f8dca5eabe9d Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sun, 3 Jul 2022 00:52:40 +0200 Subject: [PATCH] Fixed ActiveLink coloring --- components/activelink.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/activelink.tsx b/components/activelink.tsx index 164c876..30aa57a 100644 --- a/components/activelink.tsx +++ b/components/activelink.tsx @@ -7,6 +7,7 @@ import styled, {css} from "styled-components" const ALink = styled.a<{active?: boolean}>` border-bottom: 1px solid transparent; ${({active}) => active && css` + color: var(--fg) !important; border-bottom-color: currentColor; `} `