mirror of
https://github.com/openziti/zrok.git
synced 2025-02-14 17:29:28 +01:00
more visual iteration (#799)
This commit is contained in:
parent
334637b994
commit
3df2924b72
@ -48,6 +48,7 @@ const Visualizer = ({ overview }: VisualizerProps) => {
|
|||||||
onNodesChange={onNodesChange}
|
onNodesChange={onNodesChange}
|
||||||
onEdgesChange={onEdgesChange}
|
onEdgesChange={onEdgesChange}
|
||||||
fitView
|
fitView
|
||||||
|
nodesDraggable={false}
|
||||||
>
|
>
|
||||||
<Background/>
|
<Background/>
|
||||||
<Controls />
|
<Controls />
|
||||||
|
@ -1,7 +1,20 @@
|
|||||||
.react-flow__node {
|
.react-flow__node {
|
||||||
font-family: "Poppins", sans-serif;
|
font-family: "Poppins", sans-serif;
|
||||||
color: #241775;
|
font-size: 0.6em;
|
||||||
|
color: white;
|
||||||
border: 1px solid #241775;
|
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 {
|
.react-flow__attribution {
|
||||||
display: none;
|
display: none;
|
||||||
|
Loading…
Reference in New Issue
Block a user