From 148cf8ad339a01343e4918fb612b3df193c79397 Mon Sep 17 00:00:00 2001 From: Jori Lallo Date: Sun, 29 Oct 2017 23:28:45 -0700 Subject: [PATCH] lint --- app/components/ColorPicker/ColorPicker.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/app/components/ColorPicker/ColorPicker.js b/app/components/ColorPicker/ColorPicker.js index 552201a77..f82ee599f 100644 --- a/app/components/ColorPicker/ColorPicker.js +++ b/app/components/ColorPicker/ColorPicker.js @@ -131,17 +131,17 @@ const Swatch = ({ onClick, ...props }: SwatchProps) => ( ); const SwatchOutset = styled(Flex)` -width: 24px; -height: 24px; -margin-right: 5px; -border: 2px solid ${({ active, color }) => (active ? color : 'transparent')}; -border-radius: 2px; -background: ${({ color }) => color}; -${({ onClick }) => onClick && `cursor: pointer;`} + width: 24px; + height: 24px; + margin-right: 5px; + border: 2px solid ${({ active, color }) => (active ? color : 'transparent')}; + border-radius: 2px; + background: ${({ color }) => color}; + ${({ onClick }) => onClick && `cursor: pointer;`} -&:last-child { - margin-right: 0; -} + &:last-child { + margin-right: 0; + } `; const SwatchInset = styled(Flex)`