From cc757035be6e3134727e0740d5afb9ff277e8d86 Mon Sep 17 00:00:00 2001 From: daudix Date: Fri, 16 Feb 2024 02:43:59 +0300 Subject: [PATCH] Make underlines not dotted WebKit doesn't support them and they were not transitioning well into wavy soo... --- sass/_main.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sass/_main.scss b/sass/_main.scss index 4bcb46e..f293871 100644 --- a/sass/_main.scss +++ b/sass/_main.scss @@ -125,10 +125,10 @@ a { color: var(--primary-color); cursor: pointer; font-weight: bold; - text-decoration: underline dotted; &:hover { text-decoration: underline wavy; + -webkit-text-decoration: underline wavy; } } @@ -178,7 +178,8 @@ blockquote { abbr { cursor: help; - text-decoration: underline dotted; + text-decoration: underline; + -webkit-text-decoration: underline; } aside {