Sort themes and remove daisyui (#643)

* feat: sort themes and remove daisyui

* docs: update docs to reflect daisyui being removed

* feat: remove specific colours for better theme compatibility
This commit is contained in:
Tonya
2025-04-27 09:01:27 +00:00
committed by GitHub
parent de52959c5b
commit 9afd20c513
35 changed files with 932 additions and 1041 deletions

View File

@@ -1,11 +1,6 @@
<template>
<div class="pb-3">
<CardTitle
class="flex items-center"
:class="{
'text-neutral-content': dark,
}"
>
<CardTitle class="flex items-center">
<slot />
</CardTitle>
<CardDescription v-if="$slots.description">
@@ -19,11 +14,4 @@
<script lang="ts" setup>
import { CardDescription, CardTitle } from "@/components/ui/card";
defineProps({
dark: {
type: Boolean,
default: false,
},
});
</script>