Skip to content

Commit

Permalink
fix(Button): optimize text-button color
Browse files Browse the repository at this point in the history
  • Loading branch information
vvpvvp committed Apr 23, 2019
1 parent 7c60923 commit 8ed2375
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions themes/native/button.less
Expand Up @@ -19,12 +19,12 @@
color: @color;
}
&:hover {
border-color: lighten(@color, 10%);
color: lighten(@color, 10%);
border-color: lighten(@color, 15%);
color: lighten(@color, 15%);
}
&:active {
border-color: darken(@color, 10%);
color: darken(@color, 10%);
border-color: darken(@color, 15%);
color: darken(@color, 15%);
}
}

Expand Down

0 comments on commit 8ed2375

Please sign in to comment.