mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-22 08:45:13 +02:00
Series page finalized
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from 'svelte';
|
||||
import { fade } from 'svelte/transition';
|
||||
import { modalStack } from './Modal';
|
||||
|
||||
// export let visible = false;
|
||||
|
||||
@@ -6,6 +6,6 @@
|
||||
{#if $modalStack.top}
|
||||
<div
|
||||
class="fixed inset-0 bg-stone-900 bg-opacity-50 z-[19] overflow-hidden"
|
||||
transition:fade={{ duration: 100 }}
|
||||
transition:fade|global={{ duration: 100 }}
|
||||
/>
|
||||
{/if}
|
||||
|
||||
@@ -4,7 +4,8 @@
|
||||
|
||||
<div
|
||||
class="max-w-3xl self-start mt-[10vh] bg-[#33333388] backdrop-blur-xl rounded overflow-hidden flex flex-col flex-1 mx-4 sm:mx-16 lg:mx-24 drop-shadow-xl"
|
||||
in:fly|global={{ y: 20, duration: 200 }}
|
||||
in:fly|global={{ y: 20, duration: 200, delay: 200 }}
|
||||
out:fly|global={{ y: 20, duration: 200 }}
|
||||
>
|
||||
<slot />
|
||||
</div>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
{#if !!back}
|
||||
<ChevronLeft size={20} />
|
||||
{/if}
|
||||
<h1>{text}</h1>
|
||||
<h1 class="font-medium">{text}</h1>
|
||||
</button>
|
||||
{/if}
|
||||
</slot>
|
||||
|
||||
Reference in New Issue
Block a user