Browse Source

Merge pull request #134 from JustinWesleyFerrari/bugfix/qchat-reply-css-bug

Fixed reply css bug
pull/135/head
AlphaX-Projects 2 years ago committed by GitHub
parent
commit
3d5ab17218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      qortal-ui-plugins/plugins/core/components/ChatScroller-css.js

14
qortal-ui-plugins/plugins/core/components/ChatScroller-css.js

@ -216,19 +216,21 @@ export const chatStyles = css`
} }
.replied-message { .replied-message {
margin: 0;
padding: 0;
}
.replied-message p {
margin: 0; margin: 0;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
max-width: 300px; max-width: 500px;
max-height: 40px; max-height: 40px;
margin: 0;
padding: 0;
} }
.replied-message p {
margin: 0px;
padding: 0px;
}
.message { .message {
display: flex; display: flex;
flex-direction: column; flex-direction: column;

Loading…
Cancel
Save