mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
fix(devtools): set proper height of the tree nodes
This commit is contained in:
parent
841dede906
commit
7a59606aaa
3 changed files with 3 additions and 3 deletions
|
|
@ -4,7 +4,7 @@
|
|||
::ng-deep {
|
||||
as-split {
|
||||
&.space-for-bread-crumbs {
|
||||
height: calc(100% - 25px);
|
||||
height: calc(100% - 33px);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@
|
|||
|
||||
.tree-wrapper {
|
||||
overflow-y: auto;
|
||||
height: calc(100% - 25px);
|
||||
height: calc(100% - 33px);
|
||||
}
|
||||
|
||||
.angular-element {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue