Skip to content

Commit

Permalink
improve admin chip in darkmode (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
T0biii authored Mar 4, 2024
1 parent be73111 commit a899ef7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions website/src/components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,11 @@ export default function Navigation() {
color="secondary"
variant="outlined"
size="small"
style={{ marginLeft: 20, background: 'white' }}
/>
style={{
marginLeft: 20,
background: AppState.darkMode ? 'transparent' : 'white'
}}
/>
)}
</Typography>

Expand Down

0 comments on commit a899ef7

Please sign in to comment.