fix: Embed does not show selected highlight

This commit is contained in:
Tom Moor
2019-08-18 12:45:54 +01:00
parent db08263e5c
commit 4d2eda6750

View File

@ -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'};
`;