File tree 2 files changed +13
-10
lines changed
2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -152,24 +152,27 @@ 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
- "font-semibold" ,
159
158
type == "incoming" && "text-green-600 dark:text-emerald-500"
160
159
) }
161
160
>
162
161
{ type == "outgoing" ? "-" : "+" }
163
- { new Intl . NumberFormat ( ) . format (
164
- Math . floor ( tx . amount / 1000 )
165
- ) } { " " }
162
+ < span className = "font-medium" >
163
+ { new Intl . NumberFormat ( ) . format (
164
+ Math . floor ( tx . amount / 1000 )
165
+ ) }
166
+ </ span >
166
167
</ p >
167
- < p className = "text-foreground" >
168
+ < p className = "text-muted- foreground" >
168
169
{ Math . floor ( tx . amount / 1000 ) == 1 ? "sat" : "sats" }
169
170
</ p >
170
171
</ div >
171
-
172
- < FormattedFiatAmount amount = { Math . floor ( tx . amount / 1000 ) } />
172
+ < FormattedFiatAmount
173
+ className = "text-xs md:text-base"
174
+ amount = { Math . floor ( tx . amount / 1000 ) }
175
+ />
173
176
</ div >
174
177
</ div >
175
178
</ div >
Original file line number Diff line number Diff line change @@ -81,14 +81,14 @@ function Wallet() {
81
81
< BreezRedeem />
82
82
< div className = "flex flex-col xl:flex-row justify-between xl:items-center gap-5" >
83
83
< div className = "flex flex-col gap-1 text-center xl:text-left" >
84
- < div className = "text-5xl font-semibold balance sensitive slashed-zero" >
84
+ < div className = "text-5xl font-medium balance sensitive slashed-zero" >
85
85
{ new Intl . NumberFormat ( ) . format (
86
86
Math . floor ( balances . lightning . totalSpendable / 1000 )
87
87
) } { " " }
88
88
sats
89
89
</ div >
90
90
< FormattedFiatAmount
91
- className = "text-xl font-semibold "
91
+ className = "text-xl"
92
92
amount = { balances . lightning . totalSpendable / 1000 }
93
93
/>
94
94
</ div >
You can’t perform that action at this time.
0 commit comments