(fix) MkButtonがリンクのときホバー時にunderlineが出る問題を修正 (#12849)
This commit is contained in:
parent
3187c6b28d
commit
9c5559a570
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue