diff --git a/packages/editor-ui/src/styles/plugins/_vueflow.scss b/packages/editor-ui/src/styles/plugins/_vueflow.scss index 9c2414572b..1c70b8e973 100644 --- a/packages/editor-ui/src/styles/plugins/_vueflow.scss +++ b/packages/editor-ui/src/styles/plugins/_vueflow.scss @@ -70,7 +70,7 @@ } /** - * Node + * Nodes */ .vue-flow__node { @@ -83,6 +83,10 @@ cursor: grabbing; } + &.selected { + z-index: 1 !important; + } + &:has(.sticky--active) { z-index: 1 !important; } @@ -98,3 +102,12 @@ margin-left: calc(-1 * var(--spacing-2xs)); padding: var(--spacing-2xs); } + +/** + * Edges + */ + +.vue-flow__edges, +.vue-flow__edge-labels { + z-index: 1 !important; +}