From b024eb6268e3aeb2b3ac7a67e764471ed57614bb Mon Sep 17 00:00:00 2001 From: SimoHypers Date: Wed, 7 Jan 2026 16:19:03 +0400 Subject: [PATCH] fix: ensure last sidebar item is visible when scrolling Fixes #8521 - Added sticky positioning to sidebar - Constrained max-height to account for navbar height - Enables proper scrolling without cutting off last items --- .../ui-components/src/Containers/Sidebar/index.module.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/ui-components/src/Containers/Sidebar/index.module.css b/packages/ui-components/src/Containers/Sidebar/index.module.css index 67873b65391f5..abbb19ff1aaac 100644 --- a/packages/ui-components/src/Containers/Sidebar/index.module.css +++ b/packages/ui-components/src/Containers/Sidebar/index.module.css @@ -10,7 +10,10 @@ bg-white px-4 py-6 - sm:overflow-auto + sm:sticky + sm:top-16 + sm:max-h-[calc(100vh-6.5rem)] + sm:overflow-y-auto sm:border-r md:max-w-xs lg:px-6