From 18f729b9707d59132f853ecafc8961022a2bad64 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Tue, 2 Jul 2024 18:31:41 -0400 Subject: [PATCH] Make selected icon in color picker 2px weight to match others --- app/components/IconPicker/components/ColorPicker.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/IconPicker/components/ColorPicker.tsx b/app/components/IconPicker/components/ColorPicker.tsx index 1a9a96775..6183512be 100644 --- a/app/components/IconPicker/components/ColorPicker.tsx +++ b/app/components/IconPicker/components/ColorPicker.tsx @@ -149,10 +149,10 @@ const Container = styled(Flex)` `; const Selected = styled.span` - width: 8px; - height: 4px; - border-left: 1px solid white; - border-bottom: 1px solid white; + width: 10px; + height: 5px; + border-left: 2px solid white; + border-bottom: 2px solid white; transform: translateY(-25%) rotate(-45deg); `;