fix typing bubbles on SessionConversation

for some reasons, they were sometimes not visible due to the message
list bottom padding
pull/1403/head
Audric Ackermann 4 years ago
parent 7da988c132
commit 4bab6cc8b4
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -404,7 +404,7 @@
.module-message__typing-container {
height: 16px;
padding-bottom: 20px;
display: flex;
flex-direction: row;
align-items: center;

@ -49,19 +49,10 @@ export const TypingBubble = (props: TypingBubbleProps) => {
return (
<TypingBubbleContainer {...props}>
<div className={classNames('module-message', 'module-message--incoming')}>
<div
className={classNames(
'module-message__container',
'module-message__container--incoming'
)}
>
<div className="module-message__typing-container">
<TypingAnimation i18n={window.i18n} />
</div>
{renderAvatar()}
</div>
<div className="module-message__typing-container">
<TypingAnimation i18n={window.i18n} />
</div>
{renderAvatar()}
</TypingBubbleContainer>
);
};

Loading…
Cancel
Save