You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found an issue if I set element width with class ".orgchart .node .title" and ".orgchart .node .content" to "auto" to enabled different node width. The problem was child position if its parent has only 1 child, the position of the child not correctly aligned.
Then I add this to my css:
.orgchart .nodes {
justify-content: center; /* Penting untuk nodes dengan lebar berbeda-beda dan hanya punya 1 child. */
}
and it works.
Sorry for my english.
The text was updated successfully, but these errors were encountered:
I found an issue if I set element width with class ".orgchart .node .title" and ".orgchart .node .content" to "auto" to enabled different node width. The problem was child position if its parent has only 1 child, the position of the child not correctly aligned.
Then I add this to my css:
and it works.
Sorry for my english.
The text was updated successfully, but these errors were encountered: