fix(lobby): Knocking participants list for small widths

This commit is contained in:
Vlad Piersec
2021-03-29 11:42:04 +03:00
committed by Дамян Минков
parent 3426290bf2
commit eb41a306a6
2 changed files with 53 additions and 29 deletions

View File

@@ -42,9 +42,11 @@ class KnockingParticipantList extends AbstractKnockingParticipantList<Props> {
<span className = 'title'>
{ t('lobby.knockingParticipantList') }
</span>
<ul>
<ul className = 'knocking-participants-container'>
{ _participants.map(p => (
<li key = { p.id }>
<li
className = 'knocking-participant'
key = { p.id }>
<Avatar
displayName = { p.name }
size = { 48 }