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