From e316e279469ced842219dc0ffec1a6e3abafa925 Mon Sep 17 00:00:00 2001 From: Oliver Sylvester-Bradley Date: Fri, 18 Jul 2025 12:42:06 +0100 Subject: [PATCH] Fix navigation padding to prevent overflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add proper right margin to selected navigation items to prevent them from overflowing outside the sidebar boundaries. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/components/layout/DashboardLayout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/layout/DashboardLayout.tsx b/src/components/layout/DashboardLayout.tsx index c2267fa..da7d695 100644 --- a/src/components/layout/DashboardLayout.tsx +++ b/src/components/layout/DashboardLayout.tsx @@ -112,6 +112,8 @@ const DashboardLayout = ({ children }: DashboardLayoutProps) => { '&.Mui-selected': { backgroundColor: 'primary.main', color: 'primary.contrastText', + ml: 1, + mr: 2, '&:hover': { backgroundColor: 'primary.dark', },