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.
This commit is contained in:
2026-02-25 22:51:30 +01:00
parent 0f5e01e88f
commit db6a1eee11
+11
View File
@@ -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;