Bug in the last item animation
last but one item shifts to the right side

Yes, I noticed this too but I'm not sure if it's fixable. This happens when 2 or more toasts are removed at about the same time. svelte-toast actually delegates all animation work to be handled by Svelte, so it feels like it's a Svelte issue.
Yes, I noticed this too but I'm not sure if it's fixable. This happens when 2 or more toasts are removed at about the same time.
svelte-toastactually delegates all animation work to be handled by Svelte, so it feels like it's a Svelte issue.
Does it make sense to add some delay?
Normally I'd rather let Svelte do the heavy lifting re animations and batching - but I guess it's possible to place pop requests into a rate-limiting queue. I'll test this out once I have some time.
Setting "toastContainerLeft" to a fixed value seems to fix the position, items removed at the same time are still on top of one another.
I just used this: --toastContainerLeft: calc(100vw - 350px);
A bit stuck on the overlapping issue, tough.
