Archived
1
0
Fork 0

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.
This commit is contained in:
Henrik Hautakoski 2022-07-31 23:50:01 +02:00
parent 260fc64102
commit a214fe3fcf

View file

@ -12,3 +12,7 @@
.text-gitlab { color: $gitlab-color; }
.text-google { color: $google-color; }
.text-linkedin { color: $linkedin-color; }
a:hover {
text-decoration: underline;
}