diff --git a/app/gui/src/project-view/components/GraphEditor/GraphEdge.vue b/app/gui/src/project-view/components/GraphEditor/GraphEdge.vue index 354e32997f..6539afffd8 100644 --- a/app/gui/src/project-view/components/GraphEditor/GraphEdge.vue +++ b/app/gui/src/project-view/components/GraphEditor/GraphEdge.vue @@ -512,7 +512,7 @@ const backwardEdgeArrowTransform = computed(() => { const arrowHeight = 9 const arrowYOffset = 0 const arrowTransform = computed(() => { - const arrowTopOffset = 4 + const arrowTopOffset = 1 const arrowWidth = 12 const target = targetPos.value if (target == null) return diff --git a/app/gui/src/project-view/components/GraphEditor/GraphNode.vue b/app/gui/src/project-view/components/GraphEditor/GraphNode.vue index 147575e0c9..16574f0fad 100644 --- a/app/gui/src/project-view/components/GraphEditor/GraphNode.vue +++ b/app/gui/src/project-view/components/GraphEditor/GraphNode.vue @@ -639,7 +639,7 @@ const showMenuAt = ref<{ x: number; y: number }>() transition: box-shadow 0.2s ease-in-out; box-sizing: border-box; /** Space between node and component above and below, such as comments and errors. */ - --node-vertical-gap: 4px; + --node-vertical-gap: 5px; --color-node-primary: var(--node-group-color); --node-color-port: color-mix(in oklab, var(--color-node-primary) 85%, white 15%); diff --git a/app/gui/src/project-view/components/GraphEditor/GraphNodeComment.vue b/app/gui/src/project-view/components/GraphEditor/GraphNodeComment.vue index 62d31d6810..089946aa1b 100644 --- a/app/gui/src/project-view/components/GraphEditor/GraphNodeComment.vue +++ b/app/gui/src/project-view/components/GraphEditor/GraphNodeComment.vue @@ -32,6 +32,7 @@ syncRef(editing, useFocusDelayed(textEditorContent).focused) min-width: 22px; border-radius: var(--radius-default); background-color: var(--node-color-no-type); + opacity: 0.8; color: var(--color-text-inversed); font-weight: 400; }