fix(css): underline link icon when hover

This commit is contained in:
curben 2019-09-04 06:39:18 +01:00
parent 6576e6953a
commit 8f2c3037cf
1 changed files with 8 additions and 3 deletions

View File

@ -622,11 +622,11 @@ blockquote {
.dark .container, .dark .container,
.dark .footer { .dark .footer {
color: #e6e6e6; color: #e6e6e6;
background: #000; background: black;
} }
.dark a:hover { .dark a:hover {
color: #fff; color: white;
} }
.dark .home a { .dark .home a {
@ -634,7 +634,7 @@ blockquote {
} }
.dark .home a:hover { .dark .home a:hover {
border-bottom: 1px solid #fff; border-bottom: 1px solid white;
} }
.dark code, .dark code,
@ -869,6 +869,11 @@ svg#link {
border-bottom: none; border-bottom: none;
} }
/* underline link icon when hover */
.article .article-entry a.headerlink:hover {
border-bottom: 1px solid #1abc9c;
}
@media (max-width: 768px) { @media (max-width: 768px) {
body { body {
font-size: 1.2em; font-size: 1.2em;