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 {