From a56b6922b110dbe6ad2fa0e364e17740cf411e44 Mon Sep 17 00:00:00 2001 From: AlejoYarce Date: Mon, 25 Nov 2024 12:47:33 -0500 Subject: [PATCH] NavigationRail children overflow fix --- src/components/NavigationRail/styled.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/NavigationRail/styled.ts b/src/components/NavigationRail/styled.ts index 723c172..e498e35 100644 --- a/src/components/NavigationRail/styled.ts +++ b/src/components/NavigationRail/styled.ts @@ -172,5 +172,6 @@ export const NavigationRailChildrenContainer = styled.div` left: 64px; box-shadow: 2px 0px 2px 0px #0000000d; background-color: ${getThemedColor('neutral', 100)}; - overflow: scroll; + overflow-y: auto; + overflow-x: hidden; `