feat(editor): Update cursor behaviour in new canvas (no-changelog) (#10472)

This commit is contained in:
Alex Grozav
2024-08-19 17:06:06 +03:00
committed by GitHub
parent fadb5c9ae5
commit c77c6963c8

View File

@@ -23,3 +23,25 @@
opacity: 0.2;
}
}
.vue-flow__pane {
&,
&.draggable {
cursor: default;
}
&.dragging {
cursor: grabbing;
}
}
.vue-flow__node {
&,
&.draggable {
cursor: pointer;
}
&.dragging {
cursor: grabbing;
}
}