From 99181cf5c64db76cafbb39d0fd256f4a0a346e63 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 26 May 2021 07:29:59 -0400 Subject: [PATCH] slow it down --- src/components/alert/alert.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/alert/alert.ts b/src/components/alert/alert.ts index 0a1affb3..1a466417 100644 --- a/src/components/alert/alert.ts +++ b/src/components/alert/alert.ts @@ -232,7 +232,7 @@ setDefaultAnimation('alert.show', { { opacity: 0, transform: 'scale(0.8)' }, { opacity: 1, transform: 'scale(1)' } ], - options: { duration: 150 } + options: { duration: 250, easing: 'ease' } }); setDefaultAnimation('alert.hide', { @@ -240,7 +240,7 @@ setDefaultAnimation('alert.hide', { { opacity: 1, transform: 'scale(1)' }, { opacity: 0, transform: 'scale(0.8)' } ], - options: { duration: 150 } + options: { duration: 250, easing: 'ease' } }); declare global {