Move the edges on top of the nodes #2017
-
|
Is it possible to let the edges to be shown above the nodes instead of covered by nodes? I'm developing a clue wall component that requires the edges shown above the nodes. |
Beta Was this translation helpful? Give feedback.
Answered by
bcakmakoglu
Jan 28, 2026
Replies: 1 comment 1 reply
-
|
Yeah, you can use css to modify the z-index of edges instead of doing it one edge at a time. Something like this .vue-flow__edges {
z-index: 9999 !important;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SamuNatsu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yeah, you can use css to modify the z-index of edges instead of doing it one edge at a time.
Something like this
Here's an example.