From 9dbd856d62b5699533df8caf9601032435195a5b Mon Sep 17 00:00:00 2001 From: shrimbly Date: Tue, 31 Mar 2026 13:11:02 +1300 Subject: [PATCH] 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 --- src/app/globals.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 6aea376b..49728aa7 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -119,6 +119,11 @@ body { background: #3b82f6; } +/* Audio handles - purple */ +.react-flow__handle[data-handletype="audio"] { + background: #a855f7; +} + /* 3D handles - orange */ .react-flow__handle[data-handletype="3d"] { background: #f97316;