From 712e893d052eb3536ec086319983737aa054ac0b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 17 Sep 2025 18:03:07 -0400 Subject: [PATCH] Fix mobile post title icons being cut off MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove negative margin on mobile that pushed icons outside viewport. Reduce icon size from 48px to 32px for better mobile proportions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- templates/post.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/templates/post.html b/templates/post.html index 8c7fd7e..2c7aee8 100644 --- a/templates/post.html +++ b/templates/post.html @@ -144,6 +144,17 @@ margin-bottom: 2rem; } + .post-title-container { + width: 100%; + gap: 0.75rem; + } + + .post-title-icon { + margin-left: 0; + width: 32px; + height: 32px; + } + article hr { width: 100%; max-width: 100%;