Merge pull request #2341 from yougotwill/message_text_wrapping

fix: make sure to break links and not words when wrapping text in messages
pull/2354/head
Audric Ackermann 3 years ago committed by GitHub
commit 3ecdb659d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -39,7 +39,9 @@ textarea {
input,
textarea {
user-select: text;
word-break: break-all;
a {
word-break: break-all;
}
}
}

Loading…
Cancel
Save