Skip to content

Commit

Permalink
DN-4: Brighter colours.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereckmezquita committed Jul 15, 2024
1 parent 978a30b commit 4a3b88d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/atomic/IndicateStatusDot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const IndicateStatusDot = ({ isLoggedIn }: { isLoggedIn: boolean }) => (
width: '10px',
height: '10px',
borderRadius: '50%',
backgroundColor: isLoggedIn ? 'green' : 'red',
backgroundColor: isLoggedIn ? '#00ff00' : '#ff0000',
marginRight: '10px'
}}
/>
Expand Down

0 comments on commit 4a3b88d

Please sign in to comment.