mirror of
https://github.com/openziti/zrok.git
synced 2025-02-12 16:29:40 +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}
|
||||
onEdgesChange={onEdgesChange}
|
||||
fitView
|
||||
nodesDraggable={false}
|
||||
>
|
||||
<Background/>
|
||||
<Controls />
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user