* refactor(core): remove node intersections arg from drag events * chore(changeset): add * docs(examples): update intersection example
20 lines
373 B
CSS
20 lines
373 B
CSS
.vue-flow__node.intersecting {
|
|
background-color: #f15a16;
|
|
}
|
|
|
|
.vue-flow__panel {
|
|
height: 250px;
|
|
width: 250px;
|
|
border: 1px dashed #ccc;
|
|
pointer-events: none !important;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.vue-flow__panel.intersecting {
|
|
border-color: #f15a16;
|
|
background-color: rgba(241, 90, 22, 0.03);
|
|
}
|