Merge pull request #2341 from yougotwill/message_text_wrapping

fix: make sure to break links and not words when wrapping text in messages
This commit is contained in:
Audric Ackermann 2022-05-25 13:30:35 +10:00 committed by GitHub
commit 3ecdb659d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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