Describe the bug
There was a closer issue, but I can't find it.
Reproduction
The issue can be reproduced only in a specified elements order.
If change the elements order, the issue will solved.
issue order
<svelte:head/>
<Comp />
<div /> ← css animation
no issue orders
<svelte:head/>
<div />
<Comp />
~or~
<Comp />
<div />
<svelte:head/>
Or without <Comp /> or <svelte:head/>
Stackblitz reproduction
Severity
annoyance