Skip to content

Commit 96444dc

Browse files
committed
fix: domain submissions page dark mode
1 parent f1e62b7 commit 96444dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/routes/(nosearch)/domain-submissions/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<li class="contents">
4646
<div class="grid grid-cols-[7rem,1fr] gap-x-2">
4747
<div
48-
class={`col-span-2 flex flex-col justify-center rounded-2xl p-2 px-4 ${item.status == 'APPROVED' ? ' bg-green-300' : item.status == 'REJECTED' ? ' !col-span-1 bg-red-300' : ' bg-gray-300'}`}
48+
class={`col-span-2 flex flex-col justify-center rounded-2xl p-2 px-4 text-black ${item.status == 'APPROVED' ? ' bg-green-300' : item.status == 'REJECTED' ? ' !col-span-1 bg-red-300' : ' bg-gray-300'}`}
4949
>
5050
{item.status}
5151
</div>
@@ -82,7 +82,7 @@
8282
Domain submitted successfully!
8383
</Card.Root>
8484
{/if}
85-
<div class="w-full rounded-2xl bg-white p-4">
85+
<div class="w-full rounded-2xl bg-card p-4">
8686
<h3 class="text-2xl">Submit domain</h3>
8787
<hr class="my-2" />
8888
<Input

0 commit comments

Comments
 (0)