Skip to content

Commit 3df2924

Browse files
more visual iteration (#799)
1 parent 334637b commit 3df2924

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

ui100/src/Visualizer.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ const Visualizer = ({ overview }: VisualizerProps) => {
4848
onNodesChange={onNodesChange}
4949
onEdgesChange={onEdgesChange}
5050
fitView
51+
nodesDraggable={false}
5152
>
5253
<Background/>
5354
<Controls />

ui100/src/react-flow.css

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
.react-flow__node {
22
font-family: "Poppins", sans-serif;
3-
color: #241775;
3+
font-size: 0.6em;
4+
color: white;
45
border: 1px solid #241775;
6+
background-color: #241775;
7+
text-color: white;
8+
}
9+
.react-flow__node.selected {
10+
border: 1px solid #9bf316;
11+
}
12+
.react-flow__handle {
13+
background-color: #9bf316;
14+
border: 1px solid #241775;
15+
}
16+
.react-flow__edge-path {
17+
stroke: #241775;
518
}
619
.react-flow__attribution {
720
display: none;

0 commit comments

Comments
 (0)