From acdf85dbc3a09c6859ad9b6b914ea0a5c9266320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Mon, 14 Apr 2025 12:51:13 +0200 Subject: [PATCH] FIX: thick line should be 3px in the picker --- webapp/IronCalc/src/components/BorderPicker/BorderPicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/IronCalc/src/components/BorderPicker/BorderPicker.tsx b/webapp/IronCalc/src/components/BorderPicker/BorderPicker.tsx index e02574c..2ca57b4 100644 --- a/webapp/IronCalc/src/components/BorderPicker/BorderPicker.tsx +++ b/webapp/IronCalc/src/components/BorderPicker/BorderPicker.tsx @@ -361,7 +361,7 @@ const MediumLine = styled("div")` `; const ThickLine = styled("div")` width: 68px; - border-top: 1px solid ${theme.palette.grey["900"]}; + border-top: 3px solid ${theme.palette.grey["900"]}; `; const Divider = styled("div")`