* docs: Animations * docs: add confetti gun * docs: update basic example on home page * docs(deps): Add stackblitz sdk to deps * chore: update yarn.lock * docs: use vue repl * docs: remove stackblitz sdk * docs: basic repl example * docs: use repl for examples/index.md (basic example) * docs: pass ext to repl * docs: add copy plugin * docs: use import map instead of dynamic imports * docs: use repl for custom node example * docs: hide repl errors * docs: use repl for custom connectionline example * docs: use repl for edges example * docs: exclude repl from ssr * docs: use repl for nested example * docs: use repl for stress example * docs: rename customNode to custom-node * docs: use repl for update-edge example * docs: use repl for update-node example * docs: use repl for validation example * docs: use repl for save-restore example * docs: scale down minimap in repl examples * docs: use repl for dnd example * docs: use repl for empty example * docs: use repl for hidden example * docs: use repl for interaction example * docs: use repl for multi example * docs: add pinia example with stackblitz * docs: update basic example * docs: update examples * docs: remove transition from intro * docs: update features * update: README.md * docs: scope css
32 lines
571 B
CSS
32 lines
571 B
CSS
.validationflow .vue-flow__node {
|
|
width: 150px;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
color: #555;
|
|
border: 1px solid #ddd;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.validationflow .vue-flow__node-customnode {
|
|
background: #e6e6e9;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.validationflow .vue-flow__node-custominput .vue-flow__handle {
|
|
background: #e6e6e9;
|
|
}
|
|
|
|
.validationflow .vue-flow__node-custominput {
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
.validationflow .vue-flow__handle-connecting {
|
|
background: #ff6060;
|
|
}
|
|
|
|
.validationflow .vue-flow__handle-valid {
|
|
background: #55dd99;
|
|
}
|