Skip to content

Commit 3e751f0

Browse files
committed
fixes
1 parent 33e6230 commit 3e751f0

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<div fxLayout="row" fxLayoutGap="5px" fxLayoutAlign="center center">
2-
<div *ngFor="let crumb of crumbs; index as i" fxLayout="row" fxLayoutGap="5px" fxLayoutAlign="center center">
3-
<eqm-icon *ngIf="i !== 0" name="triangle" [rotate]="90"></eqm-icon>
1+
<div class="row">
2+
<div *ngFor="let crumb of crumbs; index as i" class="row">
3+
<eqm-icon *ngIf="i !== 0" name="triangle" [rotate]="0" [width]="5" [height]="5"></eqm-icon>
44
<eqm-label (click)="crumbClicked.emit({ crumb: crumb, index: index })">{{crumb}}</eqm-label>
55
</div>
66
</div>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
.row {
3+
display: flex;
4+
flex-direction: row;
5+
align-items: center;
6+
justify-content: center;
7+
8+
&> * {
9+
margin-right: 5px;
10+
}
11+
}

0 commit comments

Comments
 (0)