From 4f97232572553d7e0ad11247b6ac7008124eab0d Mon Sep 17 00:00:00 2001 From: meriadec Date: Wed, 4 Jul 2018 14:37:55 +0200 Subject: [PATCH] White background on active device interaction step --- src/components/DeviceInteraction/components.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/DeviceInteraction/components.js b/src/components/DeviceInteraction/components.js index a81e425f..77e8a82c 100644 --- a/src/components/DeviceInteraction/components.js +++ b/src/components/DeviceInteraction/components.js @@ -19,6 +19,7 @@ export const DeviceInteractionStepContainer = styled(Box).attrs({ ff: 'Open Sans', fontSize: 3, color: 'graphite', + bg: p => (p.isActive && !p.isFinished ? 'white' : ''), })` position: relative; z-index: ${p => (p.isActive ? 1 : '')};