#How to decrease zindex of edge

1 messages · Page 1 of 1 (latest)

uncut violet
#

i want my objects to appear over edges how can i do that.i tried below scss but it is not working

.react-flow__edge {
z-index: -1 !important;
}

wet sable
#

You need to apply z-index to the .react-flow__edges container, not the edge element itself

#
.react-flow__edges {
  z-index: -1 !important
}