From f231c664e6746e25d75bdd8a79a2e6a945b81e8a Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sat, 11 Jan 2020 19:36:52 -0800 Subject: [PATCH] fix: ColorPicker preview height --- app/components/ColorPicker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/ColorPicker.js b/app/components/ColorPicker.js index 9610e5d3..5037dcb9 100644 --- a/app/components/ColorPicker.js +++ b/app/components/ColorPicker.js @@ -96,8 +96,8 @@ const Floating = styled('div')` const Swatch = styled('div')` display: inline-block; - width: 40px; - height: 36px; + width: 48px; + height: 32px; border: 1px solid ${({ active, color }) => (active ? 'white' : 'transparent')}; border-radius: 4px; background: ${({ color }) => color};