Fix MessagesComponent word breaking

This commit is contained in:
Kristóf Tóth 2019-07-09 13:14:36 +02:00
parent af4374fb10
commit 193c12a1e5

View File

@ -155,7 +155,7 @@ $layouts: (
@mixin word-break() { @mixin word-break() {
/* For Firefox */ /* For Firefox */
white-space: pre-wrap; white-space: pre-wrap;
word-break: break-all; word-break: break-word;
/* For Chrome and IE */ /* For Chrome and IE */
word-wrap: break-word; word-wrap: break-word;
} }