css: get rid of link borders

the border appears when you click on any link, and it looks really out of place. this should get rid of it.
This commit is contained in:
Chinmay Pai 2019-03-22 08:15:23 +05:30 committed by GitHub
parent d33c82f794
commit 6bd25a646e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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