update css

This commit is contained in:
mulan xia 2024-01-30 17:01:45 -05:00
parent 4563fdab03
commit 93f8ef7cce
No known key found for this signature in database
GPG Key ID: C6CE526613568D73

View File

@ -126,7 +126,7 @@ Styled.StatusDot = styled.div<{ exchangeStatus: ExchangeStatus }>`
background-color: ${({ exchangeStatus }) =>
({
[ExchangeStatus.Degraded]: css`var(--color-error)`,
[ExchangeStatus.Degraded]: css`var(--color-warning)`,
[ExchangeStatus.Operational]: css`var(--color-success)`,
}[exchangeStatus])};
`;