From 83c052432903d0577ad94e0a93c88039594a656a Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Wed, 5 Aug 2026 14:13:42 +0200 Subject: [PATCH] fix(style): set link color to --dark variable This change was necessary due to the dynamically loaded legal notice. Links would have the default color without this fix. --- src/styles/common.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles/common.css b/src/styles/common.css index 5c1fddd..4932a55 100644 --- a/src/styles/common.css +++ b/src/styles/common.css @@ -24,6 +24,7 @@ body { .link { text-decoration: none; + color: var(--dark); } .link:hover:not(.button-link), .link:focus-visible:not(.button-link) {