https://i.sstatic.net/FlVv6.png
Is there a way to use fxLayout in Angular to achieve the layout shown in the image above?
Below is a snippet of my code and an image displaying the output. The red div currently matches the width of the blue div, causing the items to align to the left with extra padding on the right, resulting in the content being off-center.
<div fxLayout="row" fxLayoutAlign="center center">
<div class="blue" fxFlex="80%" fxLayout="row">
<div class="red" fxLayout="row" fxLayoutWrap fxLayoutAlign="start center">
<app-item *ngFor="let item of items.all" [item]="item"></app-item>
</div>
</div>