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
1 changed files with 3 additions and 1 deletions

View File

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