diff --git a/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.ts b/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.ts index 3204727f0d..28611f5660 100644 --- a/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.ts +++ b/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.ts @@ -412,18 +412,11 @@ export class AutofillInlineMenuIframeService implements AutofillInlineMenuIframe clearTimeout(this.delayedCloseTimeout); } - this.updateElementStyles(this.iframe, { - opacity: "0", - transition: "none", - pointerEvents: "none", - }); + this.updateElementStyles(this.iframe, { opacity: "0", transition: "none" }); this.delayedCloseTimeout = globalThis.setTimeout(() => { - this.updateElementStyles(this.iframe, { - transition: this.defaultOpacityTransition, - pointerEvents: "auto", - }); + this.updateElementStyles(this.iframe, { transition: this.defaultOpacityTransition }); this.forceCloseAutofillInlineMenu(); - }, 250); + }, 100); } }