From a07d219a7dfbf5e1f4ad3ee0da60514f782b184a Mon Sep 17 00:00:00 2001 From: David Montero Crespo Date: Sun, 8 Mar 2026 18:48:48 -0300 Subject: [PATCH] fix: allow wires to render outside the SVG viewport for better visibility --- frontend/src/components/simulator/WireLayer.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/simulator/WireLayer.tsx b/frontend/src/components/simulator/WireLayer.tsx index 81868ae..b483ec0 100644 --- a/frontend/src/components/simulator/WireLayer.tsx +++ b/frontend/src/components/simulator/WireLayer.tsx @@ -42,6 +42,7 @@ export const WireLayer: React.FC = () => { left: 0, width: '100%', height: '100%', + overflow: 'visible', // Allow wires to render outside the SVG viewport (e.g. negative coords) pointerEvents: 'auto', // Enable pointer events for control points zIndex: 1, // Below components (which have zIndex: 2) }}