Browse Source

Fixed reply css bug

pull/134/head
Justin Ferrari 2 years ago
parent
commit
1cea03cede
  1. 14
      qortal-ui-plugins/plugins/core/components/ChatScroller-css.js

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

@ -216,17 +216,19 @@ 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 {

Loading…
Cancel
Save