bg on link hover removed

This commit is contained in:
lvuch 2017-05-22 10:24:48 -07:00
parent 853aa8d444
commit f20404bcce
1 changed files with 2 additions and 2 deletions

View File

@ -6,11 +6,11 @@
///Sets base color and darkens bg on hover
@mixin bg-color($bg) {
background: $bg;
&.btn:hover, a:hover {
&.btn:hover{
background:darken($bg,10%);
transition: all 0.3s ease;
}
&.btn:active, a:focus {
&.btn:active {
background:darken($bg,25%);
}
}