fix(chat): re-fix letting long messages wrap

pull/4216/head
Leonard Kim 7 years ago committed by virtuacoplenny
parent 4eec13da1c
commit 5a53d7f32a
  1. 4
      css/_chat.scss
  2. 2
      react/features/chat/components/web/ChatMessage.js

@ -312,6 +312,10 @@
} }
} }
.chatmessage-wrapper {
max-width: 100%;
}
.chatmessage { .chatmessage {
background-color: $chatRemoteMessageBackgroundColor; background-color: $chatRemoteMessageBackgroundColor;
border-radius: 0px 6px 6px 6px; border-radius: 0px 6px 6px 6px;

@ -56,7 +56,7 @@ class ChatMessage extends AbstractChatMessage<Props> {
}); });
return ( return (
<div> <div className = 'chatmessage-wrapper'>
<div className = 'chatmessage'> <div className = 'chatmessage'>
{ this.props.showDisplayName && this._renderDisplayName() } { this.props.showDisplayName && this._renderDisplayName() }
<div className = 'usermessage'> <div className = 'usermessage'>

Loading…
Cancel
Save