From d7894ab32bf6d0f22b32c23119115854118e10dc Mon Sep 17 00:00:00 2001 From: shrimbly Date: Mon, 23 Mar 2026 22:19:18 +1300 Subject: [PATCH] fix: refine NBP input group border to 3px dashed white at 25% opacity Co-Authored-By: Claude Opus 4.6 --- src/components/GroupsOverlay.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/GroupsOverlay.tsx b/src/components/GroupsOverlay.tsx index 1374701c..a5cac780 100644 --- a/src/components/GroupsOverlay.tsx +++ b/src/components/GroupsOverlay.tsx @@ -46,7 +46,7 @@ function GroupBackground({ groupId }: GroupBackgroundProps) { width: group.size.width, height: group.size.height, backgroundColor: `${bgColor}60`, - border: group.isNbpInput ? `2px dashed ${bgColor}` : `1px solid ${bgColor}`, + border: group.isNbpInput ? `3px dashed rgba(255,255,255,0.25)` : `1px solid ${bgColor}`, pointerEvents: "none", }} />