From 4d2eda6750ef08b0a083a264e7650d05194c9cc4 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 18 Aug 2019 12:45:54 +0100 Subject: [PATCH] fix: Embed does not show selected highlight --- app/components/Editor/Embed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Editor/Embed.js b/app/components/Editor/Embed.js index 2e4bb729..d4c227b9 100644 --- a/app/components/Editor/Embed.js +++ b/app/components/Editor/Embed.js @@ -49,5 +49,5 @@ const Container = styled.div` border-radius: 3px; box-shadow: ${props => - props.isSelected ? `0 0 0 2px ${props.theme.selected}` : 'none'}; + props.isSelected ? `0 0 0 2px ${props.theme.primary}` : 'none'}; `;