Profile: Fix bio overflow (#1688)

This commit is contained in:
Alexander Zinchuk 2022-02-02 22:49:21 +01:00
parent bb0d846838
commit 33c6fe5df5
3 changed files with 5 additions and 2 deletions

View File

@ -337,7 +337,7 @@ const ManageInvites: FC<OwnProps & StateProps> = ({
contextActions={prepareContextActions(invite)}
key={invite.link}
>
<span className="title">{invite.title || invite.link}</span>
<span className="title invite-title">{invite.title || invite.link}</span>
<span className="subtitle" dir="auto">
{prepareUsageText(invite)}
</span>

View File

@ -215,6 +215,10 @@
.create-link {
margin-bottom: 0.5rem;
}
.invite-title {
white-space: nowrap;
}
}
.ManageInvite {

View File

@ -364,7 +364,6 @@
line-height: 1.25rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.subtitle {