Compare commits

..

2 Commits

Author SHA1 Message Date
e32cc36f33 fix: fix types 2025-04-05 09:40:25 +11:00
ce59647cda feat: custom sizing for modal 2025-03-11 12:15:47 +11:00

View File

@ -1,5 +1,5 @@
<template>
<TransitionRoot as="template" :show="open">
<TransitionRoot as="template" :show="!!open">
<Dialog class="relative z-50" @close="open = false">
<TransitionChild
as="template"
@ -29,7 +29,7 @@
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
>
<div
class="relative transform rounded-lg bg-zinc-900 text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg"
:class="['relative transform rounded-lg bg-zinc-900 text-left shadow-xl transition-all sm:my-8 sm:w-full', props.sizeClass ?? 'sm:max-w-lg']"
>
<div class="px-4 pb-4 pt-5 space-y-4 sm:p-6 sm:pb-4">
<slot />
@ -56,6 +56,7 @@ import {
} from "@headlessui/vue";
const open = defineModel<boolean>();
const props = defineProps<{sizeClass?: string}>();
function close() {
open.value = false;