diff --git a/source/css/_common/components/post/post.styl b/source/css/_common/components/post/post.styl index d221c5a1e..4671983b3 100644 --- a/source/css/_common/components/post/post.styl +++ b/source/css/_common/components/post/post.styl @@ -1,7 +1,7 @@ .post-body { font-family: $font-family-posts; +mobile() { - word-break: break-all; + word-break: break-word; } } diff --git a/source/css/_common/scaffolding/tables.styl b/source/css/_common/scaffolding/tables.styl index 5f4b610d5..c653b812f 100644 --- a/source/css/_common/scaffolding/tables.styl +++ b/source/css/_common/scaffolding/tables.styl @@ -6,7 +6,7 @@ table { border: 1px solid $table-border-color; font-size: $table-font-size; table-layout: fixed; - word-wrap: break-word; + word-wrap: break-all; } table>tbody>tr { &:nth-of-type(odd) { background-color: $table-row-odd-bg-color; }