diff --git a/src/components/DeviceBusyIndicator.js b/src/components/DeviceBusyIndicator.js index 9997040c..47f45b99 100644 --- a/src/components/DeviceBusyIndicator.js +++ b/src/components/DeviceBusyIndicator.js @@ -2,7 +2,7 @@ import React, { PureComponent } from 'react' import styled from 'styled-components' const Indicator = styled.div` - opacity: ${p => (p.busy ? 0.2 : 0)}; + opacity: ${p => (p.busy ? 0.1 : 0)}; width: 6px; height: 6px; border-radius: 3px; diff --git a/src/components/LibcoreBusyIndicator.js b/src/components/LibcoreBusyIndicator.js index 251f955b..2a13ca9a 100644 --- a/src/components/LibcoreBusyIndicator.js +++ b/src/components/LibcoreBusyIndicator.js @@ -2,7 +2,7 @@ import React, { PureComponent } from 'react' import styled from 'styled-components' const Indicator = styled.div` - opacity: ${p => (p.busy ? 0.2 : 0)}; + opacity: ${p => (p.busy ? 0.1 : 0)}; width: 6px; height: 6px; border-radius: 3px;