Browse Source

Update spinner color

master
meriadec 7 years ago
parent
commit
d5c98e4d9f
No known key found for this signature in database GPG Key ID: 1D2FC2305E2CB399
  1. 2
      src/components/DeviceConnect/index.js
  2. 2
      src/components/TopBar/ActivityIndicator.js

2
src/components/DeviceConnect/index.js

@ -131,7 +131,7 @@ const StepCheck = ({ checked, hasErrors }: { checked: boolean, hasErrors?: boole
<IconExclamationCircle size={16} />
</Box>
) : (
<Spinner size={16} />
<Spinner color="grey" size={16} />
)}
</Box>
)

2
src/components/TopBar/ActivityIndicator.js

@ -88,7 +88,7 @@ class ActivityIndicatorInner extends PureComponent<Props, State> {
<Rotating
size={16}
isRotating={isRotating}
color={isError ? 'alertRed' : isRotating ? undefined : 'positiveGreen'}
color={isError ? 'alertRed' : isRotating ? 'grey' : 'positiveGreen'}
>
{isError ? (
<IconExclamationCircle size={16} />

Loading…
Cancel
Save