From 5a9733dfb3ad221863b377bd862838370a58f6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Fri, 17 Feb 2023 11:20:27 +0000 Subject: [PATCH] [SG-1066] Add animation to autofill settings navs (#4778) --- apps/browser/src/popup/app-routing.animations.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/browser/src/popup/app-routing.animations.ts b/apps/browser/src/popup/app-routing.animations.ts index 560016ad978..84657d82ce4 100644 --- a/apps/browser/src/popup/app-routing.animations.ts +++ b/apps/browser/src/popup/app-routing.animations.ts @@ -205,4 +205,7 @@ export const routerTransition = trigger("routerTransition", [ transition("tabs => edit-send, send-type => edit-send", inSlideUp), transition("edit-send => tabs, edit-send => send-type", outSlideDown), + + transition("tabs => autofill", inSlideLeft), + transition("autofill => tabs", outSlideRight), ]);