Skip to content

Commit

Permalink
fix: Restore lost Navbar, toggle and icons styles after merging confl…
Browse files Browse the repository at this point in the history
…icts
  • Loading branch information
marshjaja committed Oct 6, 2024
1 parent f2c26c2 commit ee96b28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/NavBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export function NavBar({ darkMode, toggleDarkMode }) {
const { user } = useAuth();
const linkClass = ({ isActive }) =>
isActive
? 'bg-primary-green text-white rounded-xl px-3 py-2 p-4'
: 'hover:opacity-70 dark:hover:opacity-60 rounded-xl px-3 py-2 p-4';
? 'bg-light-green dark:bg-primary-green dark:hover:bg-primary-green rounded-xl px-3 py-2 p-4'
: 'hover:opacity-70 dark:hover:text-white rounded-xl px-3 py-2 p-4';

return (
<>
Expand Down

0 comments on commit ee96b28

Please sign in to comment.