more visual iteration (#799)

This commit is contained in:
Michael Quigley 2024-12-04 14:19:18 -05:00
parent 334637b994
commit 3df2924b72
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 15 additions and 1 deletions

View File

@ -48,6 +48,7 @@ const Visualizer = ({ overview }: VisualizerProps) => {
onNodesChange={onNodesChange}
onEdgesChange={onEdgesChange}
fitView
nodesDraggable={false}
>
<Background/>
<Controls />

View File

@ -1,7 +1,20 @@
.react-flow__node {
font-family: "Poppins", sans-serif;
color: #241775;
font-size: 0.6em;
color: white;
border: 1px solid #241775;
background-color: #241775;
text-color: white;
}
.react-flow__node.selected {
border: 1px solid #9bf316;
}
.react-flow__handle {
background-color: #9bf316;
border: 1px solid #241775;
}
.react-flow__edge-path {
stroke: #241775;
}
.react-flow__attribution {
display: none;