Ensure transitions are only local to avoid weird svelte issues

This commit is contained in:
Andrew Kingston 2021-09-29 15:26:01 +01:00
parent c5f0a2b34b
commit 908d4b75d8
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@
<Heading size="S">{title}</Heading> <Heading size="S">{title}</Heading>
{/if} {/if}
{#if loading} {#if loading}
<div transition:fade> <div transition:fade|local>
<Spinner size="10" /> <Spinner size="10" />
</div> </div>
{/if} {/if}