From 4146fee67e57865f96e36b0f4b9ee50f7e58f6e5 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 24 Oct 2024 15:14:12 +0530 Subject: [PATCH] feat: change button color and bg --- src/components/molecules/NavBar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/molecules/NavBar.tsx b/src/components/molecules/NavBar.tsx index 82a57a8a..e767dac1 100644 --- a/src/components/molecules/NavBar.tsx +++ b/src/components/molecules/NavBar.tsx @@ -67,15 +67,15 @@ export const NavBar: React.FC = ({ recordingName, isRecording }) => width: '140px', borderRadius: '5px', padding: '8px', - background: '#ff00c3', - color: 'white', + background: 'white', + color: '#ff00c3', marginRight: '10px', fontFamily: '"Roboto","Helvetica","Arial",sans-serif', fontWeight: '500', fontSize: '0.875rem', lineHeight: '1.75', letterSpacing: '0.02857em', - '&:hover': { color: 'white', backgroundColor: '#ff00c3' } + '&:hover': { backgroundColor: 'white', color: '#ff00c3' } }} onClick={logout}> Logout