fix: Image and horizontal highlight on selected

This commit is contained in:
Tom Moor
2019-09-15 14:53:27 -07:00
parent e2453b5b2a
commit f43643f43b
2 changed files with 2 additions and 1 deletions

View File

@ -49,5 +49,5 @@ const Container = styled.div`
border-radius: 3px;
box-shadow: ${props =>
props.isSelected ? `0 0 0 2px ${props.theme.primary}` : 'none'};
props.isSelected ? `0 0 0 2px ${props.theme.selected}` : 'none'};
`;