Fix button focus bug

This commit is contained in:
Cory LaViska
2020-05-21 08:10:49 -04:00
parent 38c93a0e9c
commit 7966647fdb

View File

@@ -52,6 +52,11 @@
.sl-button__suffix ::slotted(:last-child) {
margin-left: 0.5em;
}
// Clicks on icons shouldn't prevent the button from gaining focus
::slotted(sl-icon) {
pointer-events: none;
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////