From 4908edae1bb176575e18a5c5979cb3d4e9eb1454 Mon Sep 17 00:00:00 2001 From: arimieandreea Date: Tue, 19 May 2026 17:35:36 +0300 Subject: [PATCH] fix: add a bigger stroke for polygons PIE-451 --- packages/graphing/src/tools/polygon/polygon.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/graphing/src/tools/polygon/polygon.jsx b/packages/graphing/src/tools/polygon/polygon.jsx index 346bbd922..076895f00 100644 --- a/packages/graphing/src/tools/polygon/polygon.jsx +++ b/packages/graphing/src/tools/polygon/polygon.jsx @@ -9,7 +9,7 @@ import { correct, disabledSecondary, incorrect, missing, graphingShapeFill } fro const StyledPolygon = styled('polygon')(({ disabled: isDisabled, correctness }) => ({ fill: alpha(graphingShapeFill(), 0.2), - strokeWidth: 2, + strokeWidth: 3, stroke: color.defaults.BLACK, ...(isDisabled && disabledSecondary('stroke')), ...(correctness === 'correct' && correct('stroke')), @@ -22,7 +22,7 @@ const StyledPolygon = styled('polygon')(({ disabled: isDisabled, correctness }) const StyledPolyline = styled('polyline')(({ disabled: isDisabled, correctness }) => ({ fill: alpha(graphingShapeFill(), 0.0), - strokeWidth: 2, + strokeWidth: 3, stroke: color.defaults.BLACK, pointerEvents: 'none', ...(isDisabled && disabledSecondary('stroke')),