From 169403f5f877bc3afb8e56691a581ae8a50bd8e6 Mon Sep 17 00:00:00 2001 From: Leo Date: Tue, 23 Jan 2024 16:03:23 -0600 Subject: [PATCH] Restore links to be underlined by default. --- scss/bootstrap/_reboots.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scss/bootstrap/_reboots.scss b/scss/bootstrap/_reboots.scss index a3c3470..a47263d 100644 --- a/scss/bootstrap/_reboots.scss +++ b/scss/bootstrap/_reboots.scss @@ -1,3 +1,11 @@ body { background-color: $body-background-color; // Off white +} + +a.link-invert { + text-decoration: none; + + &:hover { + text-decoration: underline; + } } \ No newline at end of file