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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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