From 0105059771bd1bc833b7f58a83ece5cba1bbc249 Mon Sep 17 00:00:00 2001 From: bloodwiing Date: Mon, 20 May 2024 12:24:21 +0300 Subject: [PATCH] Fix: Weird Toast animation when the new Toast lasts less than the previous] --- src/comp/toast/toast.svelte | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/comp/toast/toast.svelte b/src/comp/toast/toast.svelte index e4fed1e..d0c51b8 100644 --- a/src/comp/toast/toast.svelte +++ b/src/comp/toast/toast.svelte @@ -72,11 +72,9 @@ @keyframes dismiss { 0% { opacity: var(--opacity); - max-height: var(--height); } 100% { opacity: 0.0; - max-height: 0px; } }