diff --git a/packages/button/src/LionButton.js b/packages/button/src/LionButton.js index 4c63cefc3..13826a3c6 100644 --- a/packages/button/src/LionButton.js +++ b/packages/button/src/LionButton.js @@ -1,10 +1,10 @@ import { - css, - html, browserDetection, - SlotMixin, + css, DisabledWithTabIndexMixin, + html, LitElement, + SlotMixin, } from '@lion/core'; const isKeyboardClickEvent = e => e.keyCode === 32 /* space */ || e.keyCode === 13; /* enter */ @@ -31,6 +31,7 @@ export class LionButton extends DisabledWithTabIndexMixin(SlotMixin(LitElement)) render() { return html`
+
${this._beforeTemplate()} ${browserDetection.isIE11 ? html` @@ -41,7 +42,6 @@ export class LionButton extends DisabledWithTabIndexMixin(SlotMixin(LitElement)) `} ${this._afterTemplate()} -
`; }