Make underlines not dotted

WebKit doesn't support them and they were not transitioning well into wavy soo...
This commit is contained in:
daudix
2024-02-16 02:43:59 +03:00
parent 28992f5d8d
commit cc757035be

View File

@ -125,10 +125,10 @@ a {
color: var(--primary-color); color: var(--primary-color);
cursor: pointer; cursor: pointer;
font-weight: bold; font-weight: bold;
text-decoration: underline dotted;
&:hover { &:hover {
text-decoration: underline wavy; text-decoration: underline wavy;
-webkit-text-decoration: underline wavy;
} }
} }
@ -178,7 +178,8 @@ blockquote {
abbr { abbr {
cursor: help; cursor: help;
text-decoration: underline dotted; text-decoration: underline;
-webkit-text-decoration: underline;
} }
aside { aside {