From c25c4cea0ff5ecc429163de3264316a46aaa5cdf Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Fri, 27 Jun 2025 17:35:15 +0530 Subject: [PATCH 1/3] feat: remove toggle color on hover --- src/components/dashboard/NavBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/dashboard/NavBar.tsx b/src/components/dashboard/NavBar.tsx index 58a9aaf32..db9bf9878 100644 --- a/src/components/dashboard/NavBar.tsx +++ b/src/components/dashboard/NavBar.tsx @@ -164,7 +164,7 @@ export const NavBar: React.FC = ({ sx={{ color: darkMode ? '#ffffff' : '#0000008A', '&:hover': { - color: '#ff00c3' + } }} > @@ -595,4 +595,4 @@ const NavBarRight = styled.div` align-items: center; justify-content: flex-end; margin-left: auto; -`; \ No newline at end of file +`; From 22c841e79376373632f87d8bd60dd7801503f67c Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Fri, 27 Jun 2025 17:35:36 +0530 Subject: [PATCH 2/3] feat: inherit background on toggle --- src/components/dashboard/NavBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dashboard/NavBar.tsx b/src/components/dashboard/NavBar.tsx index db9bf9878..eb91275e9 100644 --- a/src/components/dashboard/NavBar.tsx +++ b/src/components/dashboard/NavBar.tsx @@ -164,7 +164,7 @@ export const NavBar: React.FC = ({ sx={{ color: darkMode ? '#ffffff' : '#0000008A', '&:hover': { - + background: 'inherit' } }} > From 0b8a03e0bc7bca1e3404635f9029c841ae4c6676 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Fri, 27 Jun 2025 17:36:26 +0530 Subject: [PATCH 3/3] fix: inherit background on hover --- src/components/dashboard/NavBar.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/dashboard/NavBar.tsx b/src/components/dashboard/NavBar.tsx index eb91275e9..1f36879ee 100644 --- a/src/components/dashboard/NavBar.tsx +++ b/src/components/dashboard/NavBar.tsx @@ -365,6 +365,9 @@ export const NavBar: React.FC = ({ borderRadius: '5px', padding: '8px', marginRight: '10px', + '&:hover': { + background: 'inherit' + } }}> {user.email}