Skip to content

Commit

Permalink
Fix tertiary buttons hover feedback
Browse files Browse the repository at this point in the history
Add proper hover feedback to tertiary buttons whose icon
doesn't isn't affected by the color css rule.
e.g. emojis

Signed-off-by: marco <marcoambrosini@pm.me>
  • Loading branch information
marcoambrosini committed Mar 28, 2022
1 parent a04ebbf commit 870d274
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Button/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -560,11 +560,12 @@ export default {
// Tertiary
&--vue-tertiary {
color: var(--color-text-lighter);
color: var(--color-main-text);
background-color: transparent;
opacity: .7;
&:hover {
color: var(--color-main-text);
background-color: transparent;
opacity: 1;
}
}
Expand Down

0 comments on commit 870d274

Please sign in to comment.