WIP attempt to fix page transitions, Several edits
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-02 16:07:16 +02:00
parent 6f409c5331
commit 730eb75457
34 changed files with 386 additions and 401 deletions

View File

@@ -24,7 +24,7 @@
</script>
<script>
import { onMount } from 'svelte'
import { onMount, onDestroy } from 'svelte'
import { stores } from '@sapper/app'
import {
apiEndpoints,
@@ -56,7 +56,7 @@
pageTransition.onAnimationEnd = animateIn
// Props and variables
export let photos
export let photos = ''
const { page } = stores()
// Reset current location if existing
@@ -106,9 +106,10 @@
</div>
<div id="intro-carousel">
{#if photos}
<Carousel {photos} />
<Fullscreen />
{/if}
</div>
</section>