From 8a9ae00cad5fea96ace6a3479cf09471d2bd70cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Sun, 29 Jun 2025 10:10:08 +0200 Subject: [PATCH] FIX: Set the padding in coor swatches to 0 --- webapp/IronCalc/src/components/ColorPicker/ColorPicker.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/IronCalc/src/components/ColorPicker/ColorPicker.tsx b/webapp/IronCalc/src/components/ColorPicker/ColorPicker.tsx index ccb57a7..b144019 100644 --- a/webapp/IronCalc/src/components/ColorPicker/ColorPicker.tsx +++ b/webapp/IronCalc/src/components/ColorPicker/ColorPicker.tsx @@ -272,6 +272,7 @@ const ColorGridCol = styled.div` const ColorSwatch = styled.button<{ $color: string }>` width: 16px; height: 16px; + padding: 0px; ${({ $color }): string => { if ($color.toUpperCase() === "#FFFFFF") { return `border: 1px solid ${theme.palette.grey["300"]};`;