reactflow.css 276 B

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