diff --git a/src/components/iconbutton.js b/src/components/iconbutton.js index e26d6cc..19b960c 100644 --- a/src/components/iconbutton.js +++ b/src/components/iconbutton.js @@ -43,20 +43,24 @@ export class IconLinkButton extends LitElement { } render() { return html` - `; } static styles = css` ${ghostButtonStyles} + + img { + pointer-events: none; + } `; } customElements.define("mz-iconlink", IconLinkButton);