From 6acc07fe7f9edd5bd25070e2f7854d74396816fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Wed, 20 Jun 2018 14:55:48 +0200 Subject: [PATCH] lighter indicators --- src/components/DeviceBusyIndicator.js | 2 +- src/components/LibcoreBusyIndicator.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;