I wrote code like this:
<div fxLayout="row wrap"
fxLayoutGap="20px"
fxLayoutAlign="flex-start">
<mat-card fxFlex="0 1 calc(33.3% - 20px)"
class="my-card"
*ngFor="let item of items">
...
</mat-card>
</div>
It looks pretty good, only that there is no space between rows. How to add vertical gap between rows using Angular flex-layout and material UI libraries (mat-card here)?
Thanks in advance!