did thigns

This commit is contained in:
2025-07-07 21:32:09 +02:00
parent 91e0bf315d
commit 957af1c257
7 changed files with 105 additions and 31 deletions

View File

@@ -1,9 +1,12 @@
<script setup lang="ts">
defineProps<{
isScheduled: boolean
}>()
</script>
<template>
<UCard class="[&>*]:p-3 w-full">
<UCard class="[&>*]:p-3 w-full" :variant="isScheduled ? 'subtle' : 'outline'">
<slot />
</UCard>
</template>