Management: Adjust styles in channel editing (#4775)

This commit is contained in:
Alexander Zinchuk 2024-08-06 20:05:51 +02:00
parent 7bfb334d63
commit b1267fa763
2 changed files with 5 additions and 1 deletions

View File

@ -323,7 +323,7 @@ const ManageChannel: FC<OwnProps & StateProps> = ({
onClick={handleClickSubscribers}
>
<span className="title" dir="auto">{lang('ChannelSubscribers')}</span>
<span className="subtitle" dir="auto">{lang('Subscribers', chat.membersCount ?? 0, 'i')}</span>
<span className="subtitle" dir="auto">{formatInteger(chat.membersCount!)}</span>
</ListItem>
<ListItem
icon="delete-user"

View File

@ -194,6 +194,10 @@
}
}
.Checkbox {
padding-left: 3.875rem;
}
.Spinner {
margin: 2rem auto;
}