We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 334637b commit 3df2924Copy full SHA for 3df2924
ui100/src/Visualizer.tsx
@@ -48,6 +48,7 @@ const Visualizer = ({ overview }: VisualizerProps) => {
48
onNodesChange={onNodesChange}
49
onEdgesChange={onEdgesChange}
50
fitView
51
+ nodesDraggable={false}
52
>
53
<Background/>
54
<Controls />
ui100/src/react-flow.css
@@ -1,7 +1,20 @@
1
.react-flow__node {
2
font-family: "Poppins", sans-serif;
3
- color: #241775;
+ font-size: 0.6em;
4
+ color: white;
5
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;
18
}
19
.react-flow__attribution {
20
display: none;
0 commit comments