Archived
1
0
Fork 0
This repository has been archived on 2026-04-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
httpcb/app/assets/sass/base/_typography.scss
Henrik Hautakoski a214fe3fcf 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.
2022-07-31 23:50:01 +02:00

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;
}