From b6d170ef1445c5c3d515c3c95f78adf541b32026 Mon Sep 17 00:00:00 2001 From: Neven Dyulgerov Date: Wed, 29 Jan 2025 15:56:44 +0200 Subject: [PATCH] feat(apps/web): Add underline to links to fix "Links must be distinguishable without relying on color " aria error - https://dequeuniversity.com/rules/axe/4.10/link-in-text-block --- apps/web/src/components/layout/footer.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/layout/footer.tsx b/apps/web/src/components/layout/footer.tsx index 73432e64..cb70d5bd 100644 --- a/apps/web/src/components/layout/footer.tsx +++ b/apps/web/src/components/layout/footer.tsx @@ -33,7 +33,8 @@ const FooterLink: FC = ({ children, href, color }) => { href={href} target="_blank" component={Link} - c={color ?? theme.colors.gray[colorScheme === "light" ? 7 : 6]} + c={color ?? theme.colors.gray[colorScheme === "light" ? 9 : 4]} + underline="always" > {children}