From df3e8673d2fe7e6c65db0ac8b682f3775ed0e46d Mon Sep 17 00:00:00 2001 From: matei jordache Date: Wed, 25 Mar 2026 13:32:48 -0700 Subject: [PATCH] make draggable area larger --- frontend/src/styles.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/frontend/src/styles.css b/frontend/src/styles.css index 4e82a5e..1592822 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -237,6 +237,27 @@ html, body, #root { height: 10px !important; border: 2px solid #1e293b !important; border-radius: 50% !important; + position: absolute; + overflow: visible !important; + cursor: crosshair; +} + +.typed-handle::before { + content: ''; + position: absolute; + top: -7px; + bottom: -7px; + pointer-events: auto; +} + +.typed-handle.react-flow__handle-left::before { + left: -4px; + right: -16px; +} + +.typed-handle.react-flow__handle-right::before { + left: -16px; + right: -4px; } /* ── Widget rows ───────────────────────────────────────────────────── */