Underline links
This commit is contained in:
parent
74058a3a36
commit
c0d94896aa
|
@ -28,7 +28,7 @@ const ProfileStats: React.FC<IProfileStats> = ({ account, onClickHandler }) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<HStack alignItems='center' space={3}>
|
<HStack alignItems='center' space={3}>
|
||||||
<NavLink to={`/@${account.acct}/followers`} onClick={onClickHandler} title={intl.formatNumber(account.followers_count)}>
|
<NavLink to={`/@${account.acct}/followers`} onClick={onClickHandler} title={intl.formatNumber(account.followers_count)} className='hover:underline'>
|
||||||
<HStack alignItems='center' space={1}>
|
<HStack alignItems='center' space={1}>
|
||||||
<Text theme='primary' weight='bold' size='sm'>
|
<Text theme='primary' weight='bold' size='sm'>
|
||||||
{shortNumberFormat(account.followers_count)}
|
{shortNumberFormat(account.followers_count)}
|
||||||
|
@ -39,7 +39,7 @@ const ProfileStats: React.FC<IProfileStats> = ({ account, onClickHandler }) => {
|
||||||
</HStack>
|
</HStack>
|
||||||
</NavLink>
|
</NavLink>
|
||||||
|
|
||||||
<NavLink to={`/@${account.acct}/following`} onClick={onClickHandler} title={intl.formatNumber(account.following_count)}>
|
<NavLink to={`/@${account.acct}/following`} onClick={onClickHandler} title={intl.formatNumber(account.following_count)} className='hover:underline'>
|
||||||
<HStack alignItems='center' space={1}>
|
<HStack alignItems='center' space={1}>
|
||||||
<Text theme='primary' weight='bold' size='sm'>
|
<Text theme='primary' weight='bold' size='sm'>
|
||||||
{shortNumberFormat(account.following_count)}
|
{shortNumberFormat(account.following_count)}
|
||||||
|
|
Loading…
Reference in New Issue