refactor(examples): switch examples from cra to nextjs

This commit is contained in:
Christopher Möller
2022-07-19 17:23:26 +02:00
parent 62c417263c
commit be4dd6f1fa
86 changed files with 755 additions and 45859 deletions
@@ -0,0 +1,33 @@
.validationflow {
}
.validationflow :global .react-flow__node {
width: 150px;
border-radius: 5px;
padding: 10px;
color: #555;
border: 1px solid #ddd;
text-align: center;
font-size: 12px;
}
.validationflow :global .react-flow__node-customnode {
background: #e6e6e9;
border: 1px solid #ddd;
}
.validationflow :global .react-flow__node-custominput .react-flow__handle {
background: #e6e6e9;
}
.validationflow :global .react-flow__node-custominput {
background: #fff;
}
.validationflow :global .react-flow__handle-connecting {
background: #ff6060;
}
.validationflow :global .react-flow__handle-valid {
background: #55dd99;
}