remove ugly button outline on active, focus and hover
This commit is contained in:
parent
649982237f
commit
6abdd9b32a
1 changed files with 2 additions and 1 deletions
|
@ -18,8 +18,9 @@ button{
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
transition: background-color $link-hover-animation-time linear;
|
transition: background-color $link-hover-animation-time linear;
|
||||||
|
|
||||||
&:HOVER{
|
&:hover, &:active, &:focus {
|
||||||
background-color: $accent-color-2;
|
background-color: $accent-color-2;
|
||||||
|
outline: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue