Skip to content

Commit

Permalink
(fix) MkButtonがリンクのときホバー時にunderlineが出る問題を修正 (misskey-dev#12849)
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih committed Jan 2, 2024
1 parent 3187c6b commit 9c5559a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/frontend/src/components/MkButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ function onMousedown(evt: MouseEvent): void {
box-sizing: border-box;
transition: background 0.1s ease;
&:hover {
text-decoration: none;
}
&:not(:disabled):hover {
background: var(--buttonHoverBg);
}
Expand Down

0 comments on commit 9c5559a

Please sign in to comment.