diff options
author | jeffreytse <jeffreytse.mail@gmail.com> | 2020-09-22 23:09:37 +0800 |
---|---|---|
committer | jeffreytse <jeffreytse.mail@gmail.com> | 2020-09-22 23:10:00 +0800 |
commit | 04bc0124c9e14ee9c2f2e0d4b754fb6e13591e6f (patch) | |
tree | 085082ed28c78cf0f7eb5b3decf064a1ccf22b98 | |
parent | 0fe5ad29e619ac7f87f97f45e587b70531f812a5 (diff) |
fix: word-break of post content (#3)
-rw-r--r-- | _sass/yat/_layout.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_sass/yat/_layout.scss b/_sass/yat/_layout.scss index 66ec4d2..608e619 100644 --- a/_sass/yat/_layout.scss +++ b/_sass/yat/_layout.scss @@ -394,7 +394,7 @@ html { margin-bottom: $spacing-unit; overflow-wrap: break-word; word-wrap: break-word; - word-break: break-all; + word-break: break-word; h2 { @include relative-font-size(2); |