This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating spacing in router tab and fixing flex on component tab (#1433)
- Loading branch information
1 parent
7680139
commit b20e552
Showing
3 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
<main class="flex-grow monospace p1" *ngIf="tree" (keydown)="onKeypress($event)" tabindex="0"> | ||
<bt-node-item *ngFor="let node of tree.roots; trackBy: trackById" | ||
<main class="flex-auto flex-grow monospace p1" *ngIf="tree" (keydown)="onKeypress($event)" tabindex="0"> | ||
<bt-node-item | ||
*ngFor="let node of tree.roots; trackBy: trackById" | ||
[node]="node" | ||
[level]="0" | ||
(selectNode)="selectNode.emit($event)" | ||
(inspectElement)="inspectElement.emit($event)" | ||
(collapseChildren)="collapseChildren.emit($event)" | ||
(expandChildren)="expandChildren.emit($event)"> | ||
(expandChildren)="expandChildren.emit($event)" | ||
> | ||
</bt-node-item> | ||
</main> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters