Skip to content

Commit

Permalink
style(FormattedAmount): adjust spacing and text color for improved vi…
Browse files Browse the repository at this point in the history
…sual consistency
  • Loading branch information
fedosov committed Jan 23, 2025
1 parent 71c9842 commit 3b23691
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/common/FormattedAmount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export function FormattedAmount({
const [amount, actualUnit] = formattedAmount.split(" ");
return (
<>
<span className="mr-[2px]">{amount}</span>
<span className="text-gray-600">{actualUnit}</span>
<span className="mr-[3px]">{amount}</span>
<span className="text-gray-500">{actualUnit}</span>
</>
);
}

0 comments on commit 3b23691

Please sign in to comment.