From 6bd25a646e46adf7eedc8ff78c1288f8d5e91866 Mon Sep 17 00:00:00 2001 From: Chinmay Pai Date: Fri, 22 Mar 2019 08:15:23 +0530 Subject: [PATCH] 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. --- asset/style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/asset/style.css b/asset/style.css index f5f01db..6ff09ad 100644 --- a/asset/style.css +++ b/asset/style.css @@ -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; -} \ No newline at end of file +}