mirror of https://github.com/vector-im/riot-web
Fix long words causing MessageComposer to widen
Use `word-break: break-word` to split long words. Fixes https://github.com/vector-im/riot-web/issues/4414pull/4466/head
parent
2ea69624af
commit
042e7acca5
|
@ -87,6 +87,7 @@ limitations under the License.
|
||||||
flex: 1;
|
flex: 1;
|
||||||
max-height: 120px;
|
max-height: 120px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MessageComposer_input blockquote {
|
.mx_MessageComposer_input blockquote {
|
||||||
|
|
Loading…
Reference in New Issue