mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 03:00:33 +02:00
Fix profile styling
This commit is contained in:
@@ -63,7 +63,11 @@ export const ActionBar: React.FC<{ account: Account }> = ({ account }) => {
|
||||
className='account__action-bar__tab'
|
||||
to={`/@${account.get('acct')}`}
|
||||
>
|
||||
<FormattedMessage id='account.posts' defaultMessage='Posts' />
|
||||
<FormattedMessage
|
||||
id='account.posts'
|
||||
defaultMessage='Posts'
|
||||
tagName='span'
|
||||
/>
|
||||
<strong>
|
||||
<FormattedNumber value={account.get('statuses_count')} />
|
||||
</strong>
|
||||
@@ -75,7 +79,11 @@ export const ActionBar: React.FC<{ account: Account }> = ({ account }) => {
|
||||
className='account__action-bar__tab'
|
||||
to={`/@${account.get('acct')}/following`}
|
||||
>
|
||||
<FormattedMessage id='account.follows' defaultMessage='Follows' />
|
||||
<FormattedMessage
|
||||
id='account.follows'
|
||||
defaultMessage='Follows'
|
||||
tagName='span'
|
||||
/>
|
||||
<strong>
|
||||
<FormattedNumber value={account.get('following_count')} />
|
||||
</strong>
|
||||
@@ -90,6 +98,7 @@ export const ActionBar: React.FC<{ account: Account }> = ({ account }) => {
|
||||
<FormattedMessage
|
||||
id='account.followers'
|
||||
defaultMessage='Followers'
|
||||
tagName='span'
|
||||
/>
|
||||
<strong>
|
||||
{account.get('followers_count') < 0 ? (
|
||||
|
||||
Reference in New Issue
Block a user