I'm using Angular flex layout with Angular material in my application and I would like to align correctly my cards in a page separed by gaps. I've started the following code but the cards is not been align correctly. As you can see in the image below, the 4th card don't have a gap with the 1st when breaks to the new line. In this case, I would like that the 4th mat-card has a gap, like a "margin-top", but I would like to use the flexlayout features instead of pure CSS.
<div fxLayout="row wrap" fxLayoutGap="1.5%" fxLayoutAlign="start center" fxLayout.lt-sm="column">
<div fxFlex="30%">
<mat-card class="example-card">
<mat-card-header>
<div mat-card-avatar class="example-header-image">
<button mat-mini-fab color="primary" routerLink="/test">
<mat-icon>book</mat-icon>
</button>
</div>
<mat-card-title>Test</mat-card-title>
<mat-card-subtitle> </mat-card-subtitle>
</mat-card-header>
<mat-card-content>
<p>
Test
</p>
</mat-card-content>
</mat-card>
</div>
<div fxFlex="30%">
<mat-card class="example-card">
<mat-card-header>
<div mat-card-avatar class="example-header-image">
<button mat-mini-fab color="primary" routerLink="/test">
<mat-icon>book</mat-icon>
</button>
</div>
<mat-card-title>Test</mat-card-title>
<mat-card-subtitle> </mat-card-subtitle>
</mat-card-header>
<mat-card-content>
<p>
Test
</p>
</mat-card-content>
</mat-card>
</div>
<div fxFlex="30%">
<mat-card class="example-card">
<mat-card-header>
<div mat-card-avatar class="example-header-image">
<button mat-mini-fab color="primary" routerLink="/test">
<mat-icon>book</mat-icon>
</button>
</div>
<mat-card-title>Test</mat-card-title>
<mat-card-subtitle> </mat-card-subtitle>
</mat-card-header>
<mat-card-content>
<p>
Test
</p>
</mat-card-content>
</mat-card>
</div>
<div fxFlex="30%">
<mat-card class="example-card">
<mat-card-header>
<div mat-card-avatar class="example-header-image">
<button mat-mini-fab color="primary" routerLink="/test">
<mat-icon>book</mat-icon>
</button>
</div>
<mat-card-title>Test</mat-card-title>
<mat-card-subtitle> </mat-card-subtitle>
</mat-card-header>
<mat-card-content>
<p>
Test
</p>
</mat-card-content>
</mat-card>
</div>
</div>
