Fix profile styling
This commit is contained in:
parent
89b42f89d0
commit
34b02b9006
@ -63,7 +63,11 @@ export const ActionBar: React.FC<{ account: Account }> = ({ account }) => {
|
|||||||
className='account__action-bar__tab'
|
className='account__action-bar__tab'
|
||||||
to={`/@${account.get('acct')}`}
|
to={`/@${account.get('acct')}`}
|
||||||
>
|
>
|
||||||
<FormattedMessage id='account.posts' defaultMessage='Posts' />
|
<FormattedMessage
|
||||||
|
id='account.posts'
|
||||||
|
defaultMessage='Posts'
|
||||||
|
tagName='span'
|
||||||
|
/>
|
||||||
<strong>
|
<strong>
|
||||||
<FormattedNumber value={account.get('statuses_count')} />
|
<FormattedNumber value={account.get('statuses_count')} />
|
||||||
</strong>
|
</strong>
|
||||||
@ -75,7 +79,11 @@ export const ActionBar: React.FC<{ account: Account }> = ({ account }) => {
|
|||||||
className='account__action-bar__tab'
|
className='account__action-bar__tab'
|
||||||
to={`/@${account.get('acct')}/following`}
|
to={`/@${account.get('acct')}/following`}
|
||||||
>
|
>
|
||||||
<FormattedMessage id='account.follows' defaultMessage='Follows' />
|
<FormattedMessage
|
||||||
|
id='account.follows'
|
||||||
|
defaultMessage='Follows'
|
||||||
|
tagName='span'
|
||||||
|
/>
|
||||||
<strong>
|
<strong>
|
||||||
<FormattedNumber value={account.get('following_count')} />
|
<FormattedNumber value={account.get('following_count')} />
|
||||||
</strong>
|
</strong>
|
||||||
@ -90,6 +98,7 @@ export const ActionBar: React.FC<{ account: Account }> = ({ account }) => {
|
|||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='account.followers'
|
id='account.followers'
|
||||||
defaultMessage='Followers'
|
defaultMessage='Followers'
|
||||||
|
tagName='span'
|
||||||
/>
|
/>
|
||||||
<strong>
|
<strong>
|
||||||
{account.get('followers_count') < 0 ? (
|
{account.get('followers_count') < 0 ? (
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user