Browse Source

fix: refine NBP input group border to 3px dashed white at 25% opacity

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
handoff-20260429-1057
shrimbly 4 months ago
parent
commit
d7894ab32b
  1. 2
      src/components/GroupsOverlay.tsx

2
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",
}}
/>

Loading…
Cancel
Save