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:
parent
260fc64102
commit
a214fe3fcf
1 changed files with 4 additions and 0 deletions
|
|
@ -12,3 +12,7 @@
|
|||
.text-gitlab { color: $gitlab-color; }
|
||||
.text-google { color: $google-color; }
|
||||
.text-linkedin { color: $linkedin-color; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue