From f38e84fc4e5af594bed536b5d858e7ebb87aa4be Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Thu, 2 Mar 2023 09:38:05 -0300 Subject: [PATCH] connection line dark mode implemented --- .../FlowPage/components/ConnectionLineComponent/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/space_flow/src/pages/FlowPage/components/ConnectionLineComponent/index.tsx b/space_flow/src/pages/FlowPage/components/ConnectionLineComponent/index.tsx index d45a534ac..5fc8086da 100644 --- a/space_flow/src/pages/FlowPage/components/ConnectionLineComponent/index.tsx +++ b/space_flow/src/pages/FlowPage/components/ConnectionLineComponent/index.tsx @@ -21,7 +21,7 @@ const ConnectionLineComponent = ({ fill="none" stroke="#222" strokeWidth={1.5} - className="animated" + className="animated dark:stroke-gray-400" d={`M${fromX},${fromY} C ${fromX} ${toY} ${fromX} ${toY} ${toX},${toY}`} style={connectionLineStyle} /> @@ -31,6 +31,7 @@ const ConnectionLineComponent = ({ fill="#fff" r={3} stroke="#222" + className="dark:stroke-gray-400 dark:fill-gray-800" strokeWidth={1.5} />