From d29ad66f0200a5b39c3e907b78d0760f7fb77d60 Mon Sep 17 00:00:00 2001 From: jeffreytse Date: Fri, 4 Dec 2020 17:21:34 +0800 Subject: [PATCH] fix: post content and tags overflow issue --- _sass/yat/_layout.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_sass/yat/_layout.scss b/_sass/yat/_layout.scss index a34bdbe..75a77e4 100644 --- a/_sass/yat/_layout.scss +++ b/_sass/yat/_layout.scss @@ -228,10 +228,10 @@ html { } .post-tags { - display: inline-block; padding-right: 150px; .post-tag { + display: inline-block; margin: 0 12px 0 0; } } @@ -389,6 +389,7 @@ html { .post-content { margin-bottom: $spacing-unit; + overflow-x: auto; overflow-wrap: normal; word-wrap: normal; word-break: normal;