fix(prejoin) fix styling of avatar (#11629)

pull/11645/head jitsi-meet_7400
Avram Tudor 3 years ago committed by GitHub
parent 38724458e3
commit 9060bebca9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      css/premeeting/_prejoin.scss
  2. 4
      react/features/prejoin/components/Prejoin.js

@ -14,6 +14,11 @@
margin-bottom: 32px;
text-align: center;
}
&-container {
display: flex;
flex-direction: column;
}
}
&-error {

@ -387,14 +387,14 @@ class Prejoin extends Component<Props, State> {
readOnly = { readOnlyName }
value = { name } />
) : (
<>
<div className = 'prejoin-avatar-container'>
<Avatar
className = 'prejoin-avatar'
displayName = { name }
participantId = { participantId }
size = { 72 } />
<div className = 'prejoin-avatar-name'>{name}</div>
</>
</div>
)}
{showError && <div

Loading…
Cancel
Save