Merge pull request #11 from Thunderbottom/patch-1

Fix borders appearing when clicking links. Fixed by Thunderbottom.
This commit is contained in:
Hamish MacDonald 2019-03-25 14:26:53 +13:00 committed by GitHub
commit 1fc048080d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,6 +67,11 @@ body {
color: var(--color-itembg)
}
a:active, a:focus {
outline:0;
border: none;
}
/* LOADING */
.loading-wave {
display: inline-block;
@ -712,4 +717,4 @@ article:hover .textIcon {
.page-overlay .content-enter a {
color: var(--color-page-e);
text-decoration: none;
}
}