Break line if words are long in flash messages (#12977)

This commit is contained in:
Arnav Palnitkar 2021-10-29 16:17:03 -07:00 committed by GitHub
parent f22572efbf
commit 5444bb5e91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,10 @@
.message {
box-shadow: $box-shadow-high;
.message-body {
word-break: break-all;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
white-space: pre-wrap;
}
}
}