From 2b2dd8879be1f843dab4eb4061e3c7161979e196 Mon Sep 17 00:00:00 2001 From: Jack Hickey <133868041+nginx-jack@users.noreply.github.com> Date: Thu, 24 Jul 2025 11:33:09 +0100 Subject: [PATCH] Sidebar: Fix overflow missing some lines --- assets/css/v2/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/css/v2/style.css b/assets/css/v2/style.css index 9a5c8383..a9dbeaa8 100644 --- a/assets/css/v2/style.css +++ b/assets/css/v2/style.css @@ -647,11 +647,14 @@ ol li:last-child { } .sidebar__content__wrapper { + flex-grow: 1; overflow-y: auto; min-height: 0; /* allows space for scrollbar */ width: calc(var(--sidebar-width) - 1rem); scrollbar-gutter: stable; + display: flex; + flex-direction: column; } } @@ -1170,6 +1173,10 @@ nav.sidebar.sidebar__mobile-open { grid-area: sidebar; --color-foreground: oklch(0 0 0 / 0.75); + display: flex; + flex-direction: column; + height: 100%; + .sidebar__container, .sidebar__container button, .sidebar__container ul,