diff options
Diffstat (limited to 'src/lib/Home/Root.svelte')
| -rw-r--r-- | src/lib/Home/Root.svelte | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/lib/Home/Root.svelte b/src/lib/Home/Root.svelte index d65a9832..bc1bdea9 100644 --- a/src/lib/Home/Root.svelte +++ b/src/lib/Home/Root.svelte @@ -1,26 +1,26 @@ <script lang="ts"> - import settings from '$stores/settings'; - import { fly } from 'svelte/transition'; + import settings from '$stores/settings'; + import { fly } from 'svelte/transition'; - export let data: any; - export let way: number; + export let data: any; + export let way: number; - const animationDelay = 100; + const animationDelay = 100; </script> {#if $settings.displayDisableAnimations} - <slot /> + <slot /> {:else} - {#key data.url} - <div - in:fly={{ - x: way, - duration: animationDelay, - delay: animationDelay - }} - out:fly={{ x: -way, duration: animationDelay }} - > - <slot /> - </div> - {/key} + {#key data.url} + <div + in:fly={{ + x: way, + duration: animationDelay, + delay: animationDelay + }} + out:fly={{ x: -way, duration: animationDelay }} + > + <slot /> + </div> + {/key} {/if} |