mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-03 09:12:30 +00:00
10 lines
238 B
Svelte
10 lines
238 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { flyAndScale } from '$lib/utils';
|
||
|
</script>
|
||
|
|
||
|
<div in:flyAndScale={{ x: -2, y: 0, duration: 100 }} class="translate-x-1 h-full">
|
||
|
<div class="rounded-md shadow-md pointer-events-auto">
|
||
|
<slot />
|
||
|
</div>
|
||
|
</div>
|