move over word-break lines

this didn't get moved over when converting the timeline tile css to css grid
This commit is contained in:
Bruno Windels 2021-09-24 18:42:44 +02:00
parent 71bd797dd4
commit 6982f55cd7
2 changed files with 3 additions and 20 deletions

View File

@ -90,6 +90,9 @@ limitations under the License.
.Timeline_messageSender, .Timeline_messageBody {
/* reset body margin */
margin: 0;
/* first try break-all, then break-word, which isn't supported everywhere */
word-break: break-all;
word-break: break-word;
}
.Timeline_message:not(.continuation) .Timeline_messageSender,

View File

@ -47,26 +47,6 @@ limitations under the License.
margin: 0;
}
.message-container {
flex: 0 1 auto;
/* first try break-all, then break-word, which isn't supported everywhere */
word-break: break-all;
word-break: break-word;
}
.message-container .sender {
margin: 5px 0;
}
.message-container .media {
display: block;
}
.message-container .media > img,
.message-container .media > video {
display: block;
}
.AnnouncementView {
display: flex;
align-items: center;