fix: dark mode in tag

This commit is contained in:
Sabda Yagra 2026-02-16 10:52:04 +07:00
parent 7aaa6fcf12
commit 66d291ad67
2 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ export default function CreateTagModal() {
<Form {...form}>
<form
onSubmit={form.handleSubmit(onSubmit)}
className="space-y-3 bg-white rounded-sm"
className="space-y-3 bg-white dark:bg-default-50 rounded-sm"
>
<FormField
control={form.control}

View File

@ -117,7 +117,7 @@ const AdminTagTable = () => {
}
return (
<div className="w-full overflow-x-auto bg-white p-4 rounded-sm space-y-3">
<div className="w-full overflow-x-auto bg-white dark:bg-default-50 p-4 rounded-sm space-y-3">
<div className="flex justify-between mb-10 items-center">
<p className="text-xl font-medium text-default-900">
{t("tags", { defaultValue: "Tags" })}