remove hardcoded colors from setting's dialogs

This commit is contained in:
maxDorninger
2025-07-13 17:54:22 +02:00
parent c8425d7949
commit 1626f975f4
2 changed files with 4 additions and 4 deletions

View File

@@ -102,10 +102,10 @@
</Table.Body>
</Table.Root>
<Dialog.Root bind:open={dialogOpen}>
<Dialog.Content class="w-full max-w-[600px] rounded-lg bg-white p-6 shadow-lg">
<Dialog.Content class="w-full max-w-[600px] rounded-lg p-6 shadow-lg">
<Dialog.Header>
<Dialog.Title class="mb-1 text-xl font-semibold">Edit user</Dialog.Title>
<Dialog.Description class="mb-4 text-sm text-gray-500">
<Dialog.Description class="mb-4 text-sm">
Edit {selectedUser?.email}
</Dialog.Description>
</Dialog.Header>

View File

@@ -51,10 +51,10 @@
Edit my details
</Button>
</Dialog.Trigger>
<Dialog.Content class="w-full max-w-[600px] rounded-lg bg-white p-6 shadow-lg">
<Dialog.Content class="w-full max-w-[600px] rounded-lg p-6 shadow-lg">
<Dialog.Header>
<Dialog.Title class="mb-1 text-xl font-semibold">Edit User Details</Dialog.Title>
<Dialog.Description class="mb-4 text-sm text-gray-500">
<Dialog.Description class="mb-4 text-sm">
Change your email or password. Leave fields empty to not change them.
</Dialog.Description>
</Dialog.Header>