From db6a1eee11cf8dc3ade26631dee07886d07e9630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Wed, 25 Feb 2026 22:51:30 +0100 Subject: [PATCH] docs(website): add link styling to changelog Add text-decoration and hover transition effects to anchor tags within the changes list to improve link visibility. --- src/pages/changelog.astro | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/pages/changelog.astro b/src/pages/changelog.astro index c1c1d58..d44660c 100644 --- a/src/pages/changelog.astro +++ b/src/pages/changelog.astro @@ -884,6 +884,17 @@ import BaseLayout from '../layouts/BaseLayout.astro'; color: var(--color-text); } + .changes-list li a { + color: var(--color-accent); + text-decoration: underline; + text-underline-offset: 3px; + transition: color 0.2s ease; + } + + .changes-list li a:hover { + color: var(--color-text); + } + /* Initial Release */ .initial-release { text-align: center;