From 0e760584f916e86c3b675e5331e3d1ed50a6a79a Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Mon, 22 Sep 2025 19:58:35 -0400 Subject: [PATCH] Fix sidebar scrolling for smaller viewports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added CSS override to enable scrolling in fixed sidebar - Sidebar now properly scrolls when content exceeds viewport height - All navigation items and social icons are now accessible on short windows - Used local override instead of modifying theme directly 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- assets/css/_extra.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/assets/css/_extra.scss b/assets/css/_extra.scss index 35d00815..afdf68ad 100644 --- a/assets/css/_extra.scss +++ b/assets/css/_extra.scss @@ -3,4 +3,14 @@ a:not(:last-child) { margin-right: 0.2em; } +} + +// Fix sidebar scrolling for smaller viewports +@media (min-width: 940px) { + .app-header { + height: 100vh !important; + overflow-y: auto !important; + overflow-x: hidden !important; + min-height: unset !important; + } } \ No newline at end of file