Skip to content

Commit

Permalink
add missing dark color
Browse files Browse the repository at this point in the history
  • Loading branch information
evavirseda committed Nov 25, 2024
1 parent 7b2f9ad commit 13d3a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/wallet/src/ui/app/components/SummaryListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function SummaryListItem({ icon, text }: SummaryListItemProps) {
return (
<div className="flex flex-row items-center gap-x-sm">
{icon}
<span className="text-body-md text-neutral-40">{text}</span>
<span className="text-body-md text-neutral-40 dark:text-neutral-60">{text}</span>
</div>
);
}

0 comments on commit 13d3a67

Please sign in to comment.