fix(devtools): set proper height of the tree nodes

This commit is contained in:
mgechev 2021-01-28 17:05:58 -08:00 committed by Minko Gechev
parent 841dede906
commit 7a59606aaa
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
::ng-deep {
as-split {
&.space-for-bread-crumbs {
height: calc(100% - 25px);
height: calc(100% - 33px);
}
}

View file

@ -107,7 +107,7 @@
.tree-wrapper {
overflow-y: auto;
height: calc(100% - 25px);
height: calc(100% - 33px);
}
.angular-element {

View file

@ -63,7 +63,7 @@ export class DirectiveForestComponent implements OnInit, OnDestroy {
(node) => node.expandable
);
readonly dataSource = new ComponentDataSource(this.treeControl);
readonly itemHeight = 24;
readonly itemHeight = 18;
private _initialized = false;