reactflow.css20 lines · main
1@reference "./globals.css";
2
3.instance-configuration {
4 .react-flow__pane {
5 @apply cursor-default;
6 }
7 .react-flow__node {
8 @apply cursor-default;
9 }
10}
11
12.map-path {
13 animation: dash 8s linear infinite;
14}
15
16@keyframes dash {
17 to {
18 stroke-dashoffset: 100;
19 }
20}