File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ function TransactionItem({ tx }: Props) {
152
152
</ div >
153
153
< div className = "flex ml-auto space-x-3 shrink-0" >
154
154
< div className = "flex flex-col items-end md:text-xl" >
155
- < div className = "flex gap-2 " >
155
+ < div className = "flex flex-row gap-1 " >
156
156
< p
157
157
className = { cn (
158
158
type == "incoming" && "text-green-600 dark:text-emerald-500"
@@ -163,14 +163,14 @@ function TransactionItem({ tx }: Props) {
163
163
{ new Intl . NumberFormat ( ) . format (
164
164
Math . floor ( tx . amount / 1000 )
165
165
) }
166
- </ span > { " " }
166
+ </ span >
167
167
</ p >
168
- < p className = "text-foreground" >
168
+ < p className = "text-muted- foreground" >
169
169
{ Math . floor ( tx . amount / 1000 ) == 1 ? "sat" : "sats" }
170
170
</ p >
171
171
</ div >
172
172
< FormattedFiatAmount
173
- className = "text-base"
173
+ className = "text-xs md:text- base"
174
174
amount = { Math . floor ( tx . amount / 1000 ) }
175
175
/>
176
176
</ div >
You can’t perform that action at this time.
0 commit comments