StatusReplyMentions: enforce a 200px max width
This commit is contained in:
parent
5e16d0875e
commit
185ef4e3c6
|
@ -54,7 +54,7 @@ const StatusReplyMentions: React.FC<IStatusReplyMentions> = ({ status, hoverable
|
||||||
<Link
|
<Link
|
||||||
key={account.id}
|
key={account.id}
|
||||||
to={`/@${account.acct}`}
|
to={`/@${account.acct}`}
|
||||||
className='reply-mentions__account'
|
className='reply-mentions__account max-w-[200px] truncate align-bottom'
|
||||||
onClick={(e) => e.stopPropagation()}
|
onClick={(e) => e.stopPropagation()}
|
||||||
>
|
>
|
||||||
@{isPubkey(account.username) ? account.username.slice(0, 8) : account.username}
|
@{isPubkey(account.username) ? account.username.slice(0, 8) : account.username}
|
||||||
|
|
Loading…
Reference in New Issue