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,9 +39,11 @@ textarea {
input, input,
textarea { textarea {
user-select: text; user-select: text;
a {
word-break: break-all; word-break: break-all;
} }
} }
}
::selection { ::selection {
background: var(--color-text-highlight); background: var(--color-text-highlight);

Loading…
Cancel
Save