remove ugly button outline on active, focus and hover

This commit is contained in:
Jonas Leder 2021-03-28 00:43:33 +01:00
parent 649982237f
commit 6abdd9b32a

View file

@ -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;
}
}