OrgChart icon indicating copy to clipboard operation
OrgChart copied to clipboard

More flexible default design for the orgchart nodes

Open rsoika opened this issue 4 years ago • 1 comments

I think the general layout of the orgchart can be improved if the .orgchart .node .title element is not fixed to 130px

In my own application I overwrite the style with:

.orgchart .node .title {
	width: 100%;
	min-width:130px;	
}

image

instead of

image

rsoika avatar Feb 28 '21 10:02 rsoika

If you agree with my fix than also the following additional attribute must be set:

.orgchart .nodes {
    justify-content: center;
}

This ensures that the child nodes are centred.

rsoika avatar Mar 02 '21 22:03 rsoika