@@ -90,7 +90,7 @@ const Balance = ({ balanceToShow, isBalanceOutdated }: { balanceToShow: Balances
90
90
return (
91
91
< >
92
92
{ balanceToShow ?. decimal
93
- ? < Grid item sx = { { color : isBalanceOutdated ? 'primary.light' : 'text.primary' , fontWeight : 500 } } >
93
+ ? < Grid item sx = { { color : isBalanceOutdated ? 'primary.light' : 'text.primary' , fontWeight : 400 } } >
94
94
< FormatBalance2
95
95
decimalPoint = { 2 }
96
96
decimals = { [ balanceToShow . decimal ] }
@@ -111,7 +111,7 @@ const BalanceRow = ({ address, hideNumbers }: { address: string, hideNumbers: bo
111
111
const chainName = useChainName ( address ) ;
112
112
113
113
const { price, priceChainName, priceDate } = useTokenPrice ( address ) ;
114
- const isPriceOutdated = useMemo ( ( ) => priceDate !== undefined && Date . now ( ) - priceDate > BALANCES_VALIDITY_PERIOD , [ priceDate ] ) ;
114
+ const isPriceOutdated = useMemo ( ( ) => priceDate !== undefined && Date . now ( ) - priceDate > BALANCES_VALIDITY_PERIOD , [ priceDate ] ) ;
115
115
const isBalanceOutdated = useMemo ( ( ) => balances && Date . now ( ) - balances . date > BALANCES_VALIDITY_PERIOD , [ balances ] ) ;
116
116
117
117
const [ balanceToShow , setBalanceToShow ] = useState < BalancesInfo > ( ) ;
@@ -163,7 +163,7 @@ function AccountDetail ({ address, chain, goToAccount, hideNumbers, identity, is
163
163
< Grid container direction = 'column' sx = { { width : '70%' } } >
164
164
< Grid container direction = 'row' item sx = { { lineHeight : '20px' } } >
165
165
< Grid item maxWidth = '70%' onClick = { goToAccount } sx = { { cursor : 'pointer' } } >
166
- < Typography fontSize = '24px ' overflow = 'hidden' textOverflow = 'ellipsis' whiteSpace = 'nowrap' >
166
+ < Typography fontSize = '18px' fontWeight = { 400 } mt = '5px ' overflow = 'hidden' textOverflow = 'ellipsis' whiteSpace = 'nowrap' >
167
167
{ identity ?. display || name || t ( 'Unknown' ) }
168
168
</ Typography >
169
169
</ Grid >
0 commit comments