From ea62608741c8f6ac92e486740cb1952cfcb631af Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 21 Nov 2025 18:26:35 -0500 Subject: [PATCH] Fix sidebar toggle button width to accommodate text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change button from fixed 24px width to auto width with padding, allowing "Sidebar" text to fit properly without overflow. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/base.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kjvstudy_org/templates/base.html b/kjvstudy_org/templates/base.html index ed74391..5205a94 100644 --- a/kjvstudy_org/templates/base.html +++ b/kjvstudy_org/templates/base.html @@ -372,8 +372,10 @@ } .sidebar-toggle-btn { - width: 24px; + width: auto; + min-width: 24px; height: 24px; + padding: 0 0.5rem; cursor: pointer; background: transparent; border: 1px solid var(--border-color-darker);