Browse Source

Add a pointer cursor when hovering a GraphNode

This makes it clear they are indeed clickable.
mj-deploy
Vojtěch Káně 4 years ago
parent
commit
d516f5d888
  1. 3
      frontend/src/GraphNode.svelte

3
frontend/src/GraphNode.svelte

@ -36,6 +36,9 @@
</script>
<style>
g {
cursor: pointer;
}
g:hover > ellipse {
fill: #ffb3a2
}