client: Fix underlines for all links (closes #485)

This commit is contained in:
Elian Doran 2024-10-14 22:12:48 +03:00
parent 4faf27364f
commit 61bd7dca18
No known key found for this signature in database

View File

@ -36,6 +36,10 @@ body {
font-size: var(--main-font-size);
}
a {
text-decoration: none;
}
a, a:visited, a:hover {
color: var(--link-color);
}