Improve word wrapping in messages

Doesn't break words. Fixes #31.
pull/37/head
Alexey Golub 7 years ago
parent f7ef3bbb44
commit ffa1023c50

@ -95,6 +95,7 @@ img.msg-avatar {
div.msg-right {
flex: 1;
margin-left: 20px;
min-width: 50%;
}
span.msg-user {
@ -117,7 +118,7 @@ span.msg-edited {
div.msg-content {
font-size: .9375em;
padding-top: 5px;
word-break: break-all;
word-wrap: break-word;
}
div.msg-attachment {

@ -95,6 +95,7 @@ img.msg-avatar {
div.msg-right {
flex: 1;
margin-left: 20px;
min-width: 50%;
}
span.msg-user {
@ -117,7 +118,7 @@ span.msg-edited {
div.msg-content {
font-size: .9375em;
padding-top: 5px;
word-break: break-all;
word-wrap: break-word;
}
div.msg-attachment {

Loading…
Cancel
Save