From 015b6b1a6fa953f2700089051b8312fcafce74e3 Mon Sep 17 00:00:00 2001 From: Simon Hyll Date: Thu, 16 May 2024 05:09:50 +0200 Subject: [PATCH] fix: always show scroll to avoid layout shift --- src/components/overrides/Sidebar.astro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/overrides/Sidebar.astro b/src/components/overrides/Sidebar.astro index b06243ba1b..d832f314f6 100644 --- a/src/components/overrides/Sidebar.astro +++ b/src/components/overrides/Sidebar.astro @@ -111,4 +111,7 @@ const multiSidebarConfig: [string, boolean, Props][] = Astro.props.sidebar.map( .top-level { margin-bottom: 1rem; } +.sidebar-pane { + overflow-y:scroll; +} \ No newline at end of file