Fix styling

This commit is contained in:
2025-12-12 22:41:21 +00:00
parent a5b522c996
commit a5d69ccb86
29 changed files with 610 additions and 542 deletions
+18
View File
@@ -0,0 +1,18 @@
<script setup>
defineProps({
padding: { type: Boolean, default: true },
hover: { type: Boolean, default: false }
})
</script>
<template>
<div
:class="[
'rounded-xl bg-white dark:bg-gray-800 text-gray-900 dark:text-white border border-gray-200 dark:border-gray-700 shadow',
padding ? 'p-6' : '',
hover ? 'hover:shadow-lg transition-shadow' : ''
]"
>
<slot />
</div>
</template>