zrok/ui100/src/react-flow.css

25 lines
525 B
CSS
Raw Normal View History

2024-12-04 18:26:29 +01:00
.react-flow__node {
font-family: "Poppins", sans-serif;
2024-12-04 20:19:18 +01:00
font-size: 0.6em;
color: white;
2024-12-17 19:00:29 +01:00
border: 2px solid white;
border-radius: 10px;
2024-12-04 20:19:18 +01:00
background-color: #241775;
text-color: white;
}
.react-flow__node.selected {
2024-12-17 19:00:29 +01:00
color: black;
background-color: #9bf316;
border: 2px solid #241775;
font-weight: bold;
2024-12-04 20:19:18 +01:00
}
.react-flow__handle {
background-color: #9bf316;
border: 1px solid #241775;
}
.react-flow__edge-path {
stroke: #241775;
2024-12-04 18:26:29 +01:00
}
.react-flow__attribution {
display: none;
}