(fix) MkButtonがリンクのときホバー時にunderlineが出る問題を修正 (#12849)
This commit is contained in:
parent
3187c6b28d
commit
9c5559a570
1 changed files with 4 additions and 0 deletions
|
@ -131,6 +131,10 @@ function onMousedown(evt: MouseEvent): void {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
transition: background 0.1s ease;
|
transition: background 0.1s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
&:not(:disabled):hover {
|
&:not(:disabled):hover {
|
||||||
background: var(--buttonHoverBg);
|
background: var(--buttonHoverBg);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue