From e874d41fbc6930a618a80c064ca5dc5a1d5cccf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Sun, 23 Nov 2025 22:30:14 +0300 Subject: [PATCH] make padding in post content consistent in default --- data/static/css/style.css | 2 +- data/static/css/theme-otomotone.css | 2 +- data/static/css/theme-peachy.css | 2 +- sass/_default.scss | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/data/static/css/style.css b/data/static/css/style.css index 459716c..5191d11 100644 --- a/data/static/css/style.css +++ b/data/static/css/style.css @@ -156,7 +156,7 @@ a:visited { .post-content { grid-area: post-content; - padding: 20px 20px 0 20px; + padding: 20px; display: flex; flex-direction: column; overflow: hidden; diff --git a/data/static/css/theme-otomotone.css b/data/static/css/theme-otomotone.css index 11e3571..27e937e 100644 --- a/data/static/css/theme-otomotone.css +++ b/data/static/css/theme-otomotone.css @@ -156,7 +156,7 @@ a:visited { .post-content { grid-area: post-content; - padding: 20px 20px 0 20px; + padding: 20px; display: flex; flex-direction: column; overflow: hidden; diff --git a/data/static/css/theme-peachy.css b/data/static/css/theme-peachy.css index 93136eb..70db17f 100644 --- a/data/static/css/theme-peachy.css +++ b/data/static/css/theme-peachy.css @@ -156,7 +156,7 @@ a:visited { .post-content { grid-area: post-content; - padding: 12px 12px 0 12px; + padding: 12px; display: flex; flex-direction: column; overflow: hidden; diff --git a/sass/_default.scss b/sass/_default.scss index 5069734..0b84b60 100644 --- a/sass/_default.scss +++ b/sass/_default.scss @@ -294,7 +294,7 @@ $post_info_background: $MAIN_BG !default; background-color: $post_info_background; } -$post_content_padding: $BIG_PADDING $BIG_PADDING $ZERO_PADDING $BIG_PADDING !default; +$post_content_padding: $BIG_PADDING !default; $post_content_background: $ACCENT_COLOR !default; .post-content { grid-area: post-content;