Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
fix: transaction list colors
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Jul 3, 2024
1 parent d8228ae commit e0d5980
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/components/TransactionsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ function TransactionsList() {
<div className="flex items-center gap-2 text-xl">
<p
className={`font-semibold ${
type == "incoming" &&
"text-green-600 dark:color-green-400"
type == "incoming"
? "text-green-600 dark:text-green-400"
: "text-red-600 dark:text-red-400"
}`}
>
{type == "outgoing" ? "-" : "+"}{" "}
Expand Down

0 comments on commit e0d5980

Please sign in to comment.