Skip to content
Snippets Groups Projects
Unverified Commit 9c5559a5 authored by かっこかり's avatar かっこかり Committed by GitHub
Browse files

(fix) MkButtonがリンクのときホバー時にunderlineが出る問題を修正 (#12849)

parent 3187c6b2
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment