Skip to content

Commit

Permalink
fix: unify capacity colors with uptime graph
Browse files Browse the repository at this point in the history
  • Loading branch information
belopash committed Jun 11, 2024
1 parent ba89d1e commit c56cafe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/WorkersPage/DelegationCapacity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ export const Bar = styled(Box)(({ theme }) => ({
background: '#EBEBEB',

'&.error': {
background: theme.palette.error.main,
background: theme.palette.networkStatus.offline,
},

'&.warning': {
background: '#ffb801',
background: theme.palette.networkStatus.downtime,
},

'&.success': {
background: '#55AD44',
background: theme.palette.networkStatus.online,
},
}));

Expand Down

0 comments on commit c56cafe

Please sign in to comment.