Migrate more stuff

This commit is contained in:
Jon Staab
2025-02-03 16:37:14 -08:00
parent 0f705c459a
commit 8d3433b167
150 changed files with 2001 additions and 1205 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
<script lang="ts">
import {fade, translate} from "@lib/transition"
export let onClose
let {onClose, children} = $props()
</script>
<div class="drawer fixed inset-0 z-modal">
@@ -9,11 +9,11 @@
aria-label="Close drawer"
class="absolute inset-0 cursor-pointer bg-black opacity-50"
transition:fade
on:click={onClose}>
onclick={onClose}>
</button>
<div
class="scroll-container saiy sair absolute bottom-0 right-0 top-0 w-80 overflow-auto bg-base-200 text-base-content lg:w-96"
transition:translate={{axis: "x", duration: 300}}>
<slot />
{@render children?.()}
</div>
</div>