From 3806cc92306da18c1d3caf3db6046daf3aa0fe7a Mon Sep 17 00:00:00 2001 From: Jimmy Date: Tue, 17 Feb 2026 18:10:33 +0100 Subject: [PATCH] fix: set width of left and right sidebars to 100% (#1264) This prevents the width from changing when the left or right sidebar does not have enough content to stretch to 100%. --- assets/scss/grid.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/scss/grid.scss b/assets/scss/grid.scss index 9284da9..33dba8b 100644 --- a/assets/scss/grid.scss +++ b/assets/scss/grid.scss @@ -4,11 +4,13 @@ .left-sidebar { order: -3; + width: 100%; max-width: var(--left-sidebar-max-width); } .right-sidebar { order: -1; + width: 100%; max-width: var(--right-sidebar-max-width); /// Display right sidebar when min-width: lg