From e1ec6adc3ed6f5a65eb24cd4833550e9315d7644 Mon Sep 17 00:00:00 2001 From: Philipp Hugenroth Date: Tue, 29 Jun 2021 15:25:15 +0200 Subject: [PATCH] Fix sflaky sidebar in 'peek' state Signed-off-by: Philipp Hugenroth --- packages/core-components/src/layout/Sidebar/Items.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core-components/src/layout/Sidebar/Items.tsx b/packages/core-components/src/layout/Sidebar/Items.tsx index 28ebab3e18..dbaa50b76e 100644 --- a/packages/core-components/src/layout/Sidebar/Items.tsx +++ b/packages/core-components/src/layout/Sidebar/Items.tsx @@ -293,7 +293,7 @@ export const SidebarDivider = styled('hr')({ export const SidebarScrollWrapper = styled('div')({ flex: '0 1 auto', - overflowY: 'scroll', + overflowY: 'auto', // Display at least one item in the container // Question: Can this be a config/theme variable - if so, which? :/ minHeight: '48px',