Skip to content

Commit

Permalink
remove text decoration from button link hover
Browse files Browse the repository at this point in the history
  • Loading branch information
woylie committed Sep 25, 2024
1 parent ec5dc30 commit 2de06e3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion demo/assets/css/components/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,17 @@
cursor: not-allowed;
background: f.color(background, disabled, normal);
border-color: f.color(border, disabled, normal);

&:hover,
&:focus {
text-decoration: none;
}
}

&:not(:disabled, .is-disabled) {
&:hover {
&:hover,
&:focus {
text-decoration: none;
filter: brightness(110%);
}

Expand Down

0 comments on commit 2de06e3

Please sign in to comment.