feat: add optional chaining to prevent types errors and add an example of helper lines (#1904) * docs: code errors in "Updating Node Data" (#1900) fix(docs): Example of fixing code errors in "Updating Node Data" * fix: add optional chaining to prevent errors in link filtering * feat: add an example of helper lines * refactor: In the HelperLines example, replace the observer with dimensions --------- Co-authored-by: Charles Lee <114982593+rookie-orange@users.noreply.github.com> Co-authored-by: J <gongjie0422@163.com>
15 lines
236 B
CSS
15 lines
236 B
CSS
.vue-flow__node {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
padding: 10px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.vue-flow__handle {
|
|
visibility: hidden;
|
|
}
|