Skip to content

Commit

Permalink
chore: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
im-adithya committed Jul 11, 2024
1 parent edc7e2b commit 160679e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/TransactionItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function TransactionItem({ tx }: Props) {
"w-6 h-6 md:w-8 md:h-8",
type === "outgoing"
? "stroke-orange-400 dark:stroke-amber-600"
: "stroke-green-500 dark:stroke-emerald-500"
: "stroke-green-400 dark:stroke-emerald-500"
)}
/>
</div>
Expand All @@ -91,7 +91,7 @@ function TransactionItem({ tx }: Props) {
<p
className={cn(
"font-semibold",
type == "incoming" && "text-green-500 dark:text-emerald-500"
type == "incoming" && "text-green-600 dark:text-emerald-500"
)}
>
{type == "outgoing" ? "-" : "+"}
Expand Down Expand Up @@ -134,7 +134,7 @@ function TransactionItem({ tx }: Props) {
"w-6 h-6 md:w-8 md:h-8",
type === "outgoing"
? "stroke-orange-400 dark:stroke-amber-600"
: "stroke-green-500 dark:stroke-emerald-500"
: "stroke-green-400 dark:stroke-emerald-500"
)}
/>
</div>
Expand Down

0 comments on commit 160679e

Please sign in to comment.