From 74ecacb791559e3283644ea0b32bc1d1635b8925 Mon Sep 17 00:00:00 2001 From: Sanskar Jain <52746480+sans-byte@users.noreply.github.com> Date: Wed, 23 Oct 2024 17:27:04 +0530 Subject: [PATCH] fix x axis scroll bar issue on developer page (#7975) This PR Fixes Issue : #7932 I have added the CSS to remove the scroll bar from x axis of the sidebar on the developers page. --- packages/twenty-website/src/app/_components/docs/DocsSideBar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-website/src/app/_components/docs/DocsSideBar.tsx b/packages/twenty-website/src/app/_components/docs/DocsSideBar.tsx index dfed8f237f85..e118f796a593 100644 --- a/packages/twenty-website/src/app/_components/docs/DocsSideBar.tsx +++ b/packages/twenty-website/src/app/_components/docs/DocsSideBar.tsx @@ -25,6 +25,7 @@ const StyledContainer = styled.div` width: 300px; min-width: 300px; overflow: scroll; + overflow-x: hidden; height: calc(100vh - 60px); position: sticky; top: 64px;