From 6abdd9b32a21c0e5b5732a41801ac8b056f55ff2 Mon Sep 17 00:00:00 2001 From: Jonas Leder Date: Sun, 28 Mar 2021 00:43:33 +0100 Subject: [PATCH] remove ugly button outline on active, focus and hover --- scss/_general.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/_general.scss b/scss/_general.scss index dd088ca..af9e412 100644 --- a/scss/_general.scss +++ b/scss/_general.scss @@ -18,8 +18,9 @@ button{ border-radius: 5px; transition: background-color $link-hover-animation-time linear; - &:HOVER{ + &:hover, &:active, &:focus { background-color: $accent-color-2; + outline: none; } }