Style link text underlines rather than using border-bottom for link underlines.

This commit is contained in:
Brent Simmons
2024-12-30 17:45:13 -08:00
parent 373c36392d
commit 3a9c1d46b0

View File

@@ -414,8 +414,10 @@ a.footnote:hover,
}
.articleBody a:link, .articleBody a:visited {
text-decoration: none;
border-bottom: 1px solid var(--primary-accent-color);
text-decoration: underline;
text-decoration-color: var(--primary-accent-color);
text-decoration-thickness: 1px;
text-underline-offset: 2px;
color: var(--secondary-accent-color);
}