From c10065b85ed7804fd7d2e31aed0f72ff172d9cff Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 5 Dec 2025 17:52:16 +0000 Subject: [PATCH 1/3] Initial plan From 9db4fa78c01360cfbf70a7b1de241d39e9be3f2b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 5 Dec 2025 17:59:31 +0000 Subject: [PATCH 2/3] Fix edge visibility by overriding ReactFlow CSS variables Co-authored-by: grovesy <62599442+grovesy@users.noreply.github.com> --- src/index.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/index.css b/src/index.css index b2a1fb9..bc44168 100644 --- a/src/index.css +++ b/src/index.css @@ -96,3 +96,16 @@ body, .graph-section > div { flex: 1; } + +/* Override ReactFlow edge colors for better visibility */ +.react-flow { + --xy-edge-stroke-default: #111827; + --xy-edge-stroke-width-default: 2; + --xy-edge-stroke-selected-default: #ef4444; +} + +.react-flow.dark { + --xy-edge-stroke-default: #e5e7eb; + --xy-edge-stroke-width-default: 2; + --xy-edge-stroke-selected-default: #ef4444; +} From cfe381ff43df11918e6b58227a6d5db4f8174ad0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 5 Dec 2025 18:28:13 +0000 Subject: [PATCH 3/3] Import index.css in main.jsx to apply CSS overrides Co-authored-by: grovesy <62599442+grovesy@users.noreply.github.com> --- src/main.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.jsx b/src/main.jsx index 51c4898..155dfd9 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -2,6 +2,7 @@ import React from "react"; import ReactDOM from "react-dom/client"; import App from "./App"; +import "./index.css"; ReactDOM.createRoot(document.getElementById("root")).render(