feat: ui tweaks

This commit is contained in:
2026-03-25 21:31:39 +01:00
parent 5d5d691bab
commit ffba95a411
3 changed files with 6 additions and 10 deletions

View File

@@ -15,7 +15,7 @@ const emit = defineEmits<{ close: [confirmed: boolean] }>();
<template #footer>
<div class="flex gap-2 justify-end w-full">
<UButton variant="ghost" color="neutral" @click="emit('close', false)">Cancel</UButton>
<UButton color="error" @click="emit('close', true)">Delete</UButton>
<UButton color="error" icon="i-lucide-trash-2" @click="emit('close', true)">Delete</UButton>
</div>
</template>
</UModal>