Restore links to be underlined by default.

This commit is contained in:
Leo
2024-01-23 16:03:23 -06:00
parent 725b4fa82e
commit 169403f5f8

View File

@@ -1,3 +1,11 @@
body { body {
background-color: $body-background-color; // Off white background-color: $body-background-color; // Off white
} }
a.link-invert {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}