Fix word break in side messages

This commit is contained in:
balazs
2019-01-23 14:27:15 +01:00
parent 0e5a8fca05
commit 7e6080e396
3 changed files with 14 additions and 1 deletions

View File

@ -144,3 +144,11 @@ $layouts: (
min-height: #{$rows-count / $grid-rows-count * 100}vh;
}
}
@mixin word-break() {
/* For Firefox */
white-space: pre-wrap;
word-break: break-all;
/* For Chrome and IE */
word-wrap: break-word;
}