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.
18 lines
376 B
SCSS
18 lines
376 B
SCSS
|
|
// Section header (part of .section)
|
|
|
|
.hdr-center {
|
|
display: inline-block;
|
|
padding: 20px 80px;
|
|
margin: 30px auto;
|
|
border-bottom: 2px solid $border-color;
|
|
}
|
|
|
|
.text-github { color: $github-color; }
|
|
.text-gitlab { color: $gitlab-color; }
|
|
.text-google { color: $google-color; }
|
|
.text-linkedin { color: $linkedin-color; }
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|