From 36352d1d9f0344e69a32da52769b20a5fff93b2b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 20 Nov 2025 18:13:11 -0500 Subject: [PATCH] Reduce sidebar width by 60px for more compact design MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Narrow sidebar from 220px to 160px: - Reduce font-size from 0.8rem to 0.75rem - Tighten line-height from 1.5 to 1.4 Creates a more compact, unobtrusive sidebar that takes up less screen real estate while remaining readable. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/base.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kjvstudy_org/templates/base.html b/kjvstudy_org/templates/base.html index 875cf90..9b07726 100644 --- a/kjvstudy_org/templates/base.html +++ b/kjvstudy_org/templates/base.html @@ -117,13 +117,13 @@ position: fixed; top: 2rem; left: 2rem; - width: 220px; + width: 160px; max-height: calc(100vh - 4rem); overflow-y: auto; background: transparent; padding: 0; - font-size: 0.8rem; - line-height: 1.5; + font-size: 0.75rem; + line-height: 1.4; z-index: 100; }