Skip to content

Commit

Permalink
Quickfix Graph Editor styles (#11746)
Browse files Browse the repository at this point in the history
  • Loading branch information
farmaazon authored Dec 3, 2024
1 parent caeaf41 commit 48c3c7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ const backwardEdgeArrowTransform = computed<string | undefined>(() => {
const arrowHeight = 9
const arrowYOffset = 0
const arrowTransform = computed<string | undefined>(() => {
const arrowTopOffset = 4
const arrowTopOffset = 1
const arrowWidth = 12
const target = targetPos.value
if (target == null) return
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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%);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 48c3c7f

Please sign in to comment.