Merge pull request #636 from msgmaxim/typing-bubble

Add missing margin to typing indicator bubbles
pull/651/head
Maxim Shishmarev 6 years ago committed by GitHub
commit 4c3b4b3e64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -52,7 +52,10 @@ export class TypingBubble extends React.Component<Props> {
const { i18n, color } = this.props; const { i18n, color } = this.props;
return ( return (
<div className={classNames('module-message', 'module-message--incoming')}> <div className="loki-message-wrapper">
<div
className={classNames('module-message', 'module-message--incoming')}
>
<div <div
className={classNames( className={classNames(
'module-message__container', 'module-message__container',
@ -66,6 +69,7 @@ export class TypingBubble extends React.Component<Props> {
{this.renderAvatar()} {this.renderAvatar()}
</div> </div>
</div> </div>
</div>
); );
} }
} }

Loading…
Cancel
Save