From e450d1e35ee768df9984dc2b6b1ffc34f48e27b1 Mon Sep 17 00:00:00 2001 From: David Leek Date: Tue, 29 Apr 2025 09:27:09 +0200 Subject: [PATCH] chore: replace inherit color on menu item hover to common.white (#9856) --- .../component/layout/MainLayout/AdminMenu/AdminListItem.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/component/layout/MainLayout/AdminMenu/AdminListItem.tsx b/frontend/src/component/layout/MainLayout/AdminMenu/AdminListItem.tsx index fe8a68462a..b9f595230d 100644 --- a/frontend/src/component/layout/MainLayout/AdminMenu/AdminListItem.tsx +++ b/frontend/src/component/layout/MainLayout/AdminMenu/AdminListItem.tsx @@ -28,7 +28,7 @@ const listItemButtonStyle = (theme: Theme) => ({ }, '&:hover': { backgroundColor: '#546C71', - color: 'inherit', + color: theme.palette.common.white, fontWeight: theme.typography.fontWeightBold, '& p': { fontWeight: theme.typography.fontWeightBold, @@ -56,7 +56,7 @@ const subListItemButtonStyle = (theme: Theme) => ({ }, '&:hover': { backgroundColor: '#546C71', - color: 'inherit', + color: theme.palette.common.white, fontWeight: theme.typography.fontWeightBold, '& p': { fontWeight: theme.typography.fontWeightBold,