У меня есть, и мне нужно установить данные так, чтобы они были в центре, но перекрывали данные.
<mat-drawer-container class="example-container">
<mat-drawer mode="side" opened position="start">
<table>
<tr *ngFor = "let item of Items">
<td>
<button mat-stroked-button class="side-button">{{item.value1}}</button>
</td>
</tr>
</table>
</mat-drawer>
<mat-drawer-content class="content">
<app-component1></app-component1>
</mat-drawer-content>
</mat-drawer-container>
Какие параметры могут помочь здесь?