diff --git a/apps/browser/src/autofill/background/overlay.background.ts b/apps/browser/src/autofill/background/overlay.background.ts index aa3f68442e..88b63de237 100644 --- a/apps/browser/src/autofill/background/overlay.background.ts +++ b/apps/browser/src/autofill/background/overlay.background.ts @@ -692,7 +692,7 @@ export class OverlayBackground implements OverlayBackgroundInterface { const message = { command: "fadeInAutofillInlineMenuIframe" }; this.inlineMenuButtonPort?.postMessage(message); this.inlineMenuListPort?.postMessage(message); - }, 125); + }, 150); } private clearInlineMenuFadeInTimeout() { 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 c126ef963c..ec5117cefe 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 @@ -314,7 +314,7 @@ export class AutofillInlineMenuIframeService implements AutofillInlineMenuIframe this.fadeInTimeout = globalThis.setTimeout(() => { this.updateElementStyles(this.iframe, { display: "block", opacity: "1" }); - }, 50); + }, 25); } /**