From a214fe3fcfe7ba55764f9ee46579b7bdb0fd88d1 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 31 Jul 2022 23:50:01 +0200 Subject: [PATCH] app/assets/sass/base/_typography.scss: fix underlines on links. bootstrap 3.4.0 only had underlines for hover links while 5.2.0 has them on for all states. So enable them for a:hover again here. while we disable them in bootstrap. --- app/assets/sass/base/_typography.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/sass/base/_typography.scss b/app/assets/sass/base/_typography.scss index 93ac4c4..31e88b9 100644 --- a/app/assets/sass/base/_typography.scss +++ b/app/assets/sass/base/_typography.scss @@ -12,3 +12,7 @@ .text-gitlab { color: $gitlab-color; } .text-google { color: $google-color; } .text-linkedin { color: $linkedin-color; } + +a:hover { + text-decoration: underline; +}