From a7fe7ec79f8582ff11514c68143f1630838820ed Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 4 Dec 2025 11:41:29 -0500 Subject: [PATCH] Hide sidebar fully on mobile, remove breadcrumb drop shadow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Push collapsed sidebar further off-screen (-165px) - Remove box-shadow from sticky breadcrumb 🤖 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 d62650f..0d6a58f 100644 --- a/kjvstudy_org/templates/base.html +++ b/kjvstudy_org/templates/base.html @@ -376,13 +376,13 @@ } .breadcrumb.stuck { - box-shadow: 0 2px 8px rgba(0,0,0,0.05); + box-shadow: none; padding-top: 0.75rem; margin-top: 0; } [data-theme="dark"] .breadcrumb.stuck { - box-shadow: 0 2px 8px rgba(0,0,0,0.2); + box-shadow: none; } .breadcrumb-actions { @@ -1024,7 +1024,7 @@ @media (max-width: 768px) { .nav-sidebar { width: 140px; - left: -140px; + left: -165px; top: 0; bottom: 0; max-height: 100vh;