I use Angular 6 and Material 6.4.7. I need to implement the grid-list on the main page. Make it so that the header and footer have a fixed width, and content occupies the rest of the space. How do I do this?
<mat-grid-list cols="1">
<mat-grid-tile-header>
<app-header></app-header>
</mat-grid-tile-header>
<mat-grid-tile>
<router-outlet></router-outlet>
</mat-grid-tile>
<mat-grid-tile-footer>
<app-footer></app-footer>
</mat-grid-tile-footer>