Skip to content

Commit 90d252d

Browse files
authored
Fix font color for modal item titles (#334)
1 parent 9d4a1bf commit 90d252d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/nextjs/app/builders/[address]/_components/PointsBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const PointsBarModal = forwardRef<HTMLDialogElement, PointsBarModalProps>(({ clo
3232
<dl className="mt-5 grid grid-cols-1 divide-gray-200 overflow-hidden rounded-lg bg-base-100 border border-gray-200 md:grid-cols-4 md:divide-x divide-y md:divide-y-0">
3333
{stats.map(item => (
3434
<div key={item.name} className="px-4 py-5 sm:p-6">
35-
<dt className="text-base font-normal text-gray-500">{item.name}</dt>
35+
<dt className="text-base font-normal text-base-content">{item.name}</dt>
3636
<dd className="mt-1 flex items-baseline justify-between md:block lg:flex">
3737
<div className="flex items-baseline text-2xl font-semibold text-primary">{item.stat}</div>
3838
</dd>

0 commit comments

Comments
 (0)