Browse Source

fix: add CSS rule for audio handle dot color

The handle dot color is set via data-handletype attribute selector in CSS.
Audio handles had no rule, so they fell back to the default appearance.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
handoff-20260429-1057
shrimbly 4 months ago
parent
commit
9dbd856d62
  1. 5
      src/app/globals.css

5
src/app/globals.css

@ -119,6 +119,11 @@ body {
background: #3b82f6; background: #3b82f6;
} }
/* Audio handles - purple */
.react-flow__handle[data-handletype="audio"] {
background: #a855f7;
}
/* 3D handles - orange */ /* 3D handles - orange */
.react-flow__handle[data-handletype="3d"] { .react-flow__handle[data-handletype="3d"] {
background: #f97316; background: #f97316;

Loading…
Cancel
Save