Skip to content

Commit

Permalink
Merge pull request #39 from Luke-Oldenburg/red-negative-transaction
Browse files Browse the repository at this point in the history
Color negative transactions red
  • Loading branch information
Luke-Oldenburg authored Dec 8, 2024
2 parents 8b62e0a + 1b56b76 commit d67648f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Transaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function Transaction({
? palette.black
: transaction.amount_cents > 0
? "#33d6a6"
: palette.muted,
: "#d63333",
}}
>
{renderMoney(transaction.amount_cents)}
Expand Down

0 comments on commit d67648f

Please sign in to comment.