feat: sync dark mode bg navbar

This commit is contained in:
amhsirak
2025-10-13 17:14:02 +05:30
parent 8c5b2856aa
commit 46c217446a
5 changed files with 1 additions and 1246 deletions

View File

@@ -601,7 +601,7 @@ export const NavBar: React.FC<NavBarProps> = ({
const NavBarWrapper = styled.div<{ mode: 'light' | 'dark' }>`
grid-area: navbar;
background-color: ${({ mode }) => (mode === 'dark' ? '#1e2124' : '#ffffff')};
background-color: ${({ mode }) => (mode === 'dark' ? '#080808ff' : '#ffffff')};
padding: 5px;
display: flex;
justify-content: space-between;