From 6320a22fd6b1206bbcb3fbe26a9ebf76b73d6457 Mon Sep 17 00:00:00 2001 From: Aryaman Kumar Sharma Date: Wed, 12 Feb 2025 23:41:42 +0530 Subject: [PATCH 1/2] Fix: Sidemenu UI Overflows --- Client/src/Components/Sidebar/index.jsx | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Client/src/Components/Sidebar/index.jsx b/Client/src/Components/Sidebar/index.jsx index 27753dfcb..0f7657a58 100644 --- a/Client/src/Components/Sidebar/index.jsx +++ b/Client/src/Components/Sidebar/index.jsx @@ -183,6 +183,7 @@ function Sidebar() { This is the top lever for styles */ sx={{ + position: 'relative', border: 1, borderColor: theme.palette.primary.lowContrast, borderRadius: theme.shape.borderRadius, @@ -302,6 +303,19 @@ function Sidebar() { + Menu @@ -566,7 +581,8 @@ function Sidebar() { ); })} - + + Date: Thu, 13 Feb 2025 23:01:16 +0530 Subject: [PATCH 2/2] Fix: Profile Sidemenu Overflows --- Client/src/Components/Sidebar/index.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/Client/src/Components/Sidebar/index.jsx b/Client/src/Components/Sidebar/index.jsx index 0f7657a58..94a727959 100644 --- a/Client/src/Components/Sidebar/index.jsx +++ b/Client/src/Components/Sidebar/index.jsx @@ -307,6 +307,7 @@ function Sidebar() { sx={{ flexGrow: 1, overflow: 'auto', + overflowX: 'hidden', '&::-webkit-scrollbar': { width: theme.spacing(2), },