From a7afbb3be9c532013af7dc3575309639e649fedd Mon Sep 17 00:00:00 2001 From: Adrian Roselli Date: Fri, 8 May 2026 13:41:29 -0400 Subject: [PATCH] Restores underlines to links in the content index.css has this code, which removes underlines from _all_ links on the page: ``` a { color: #0366d6; text-decoration: none; } ``` This update reverts that for content links. --- assets/css/custom.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/css/custom.scss b/assets/css/custom.scss index c37cc9534d7..07e21aa448e 100644 --- a/assets/css/custom.scss +++ b/assets/css/custom.scss @@ -283,3 +283,8 @@ blockquote { font-family: 'Vazirmatn', sans-serif; } } + +/* Restores underlines to links in the content. */ +article a { + text-decoration: revert; +}