From 4b60428d3e8d80deea3f1adb3a7d5ddb66b41bb1 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 23 May 2023 23:33:39 -0700 Subject: [PATCH] Underline links I tried looking at my website on my Kobo the other day and noticed that links on my pages were impossible to discern from other text there. My Kobo just has a monochrome E-ink display, so it cannot differentiate between the links and the rest of the text without this very well. --- src/less/include/common.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/less/include/common.less b/src/less/include/common.less index 4aa433f..2c48933 100644 --- a/src/less/include/common.less +++ b/src/less/include/common.less @@ -1,7 +1,7 @@ @import 'colors'; a { - text-decoration: none; + text-decoration: underline; @media (prefers-color-scheme: dark) { color: @dark-primary;