Is there any way to remove the border, I think it's the box-shadow
of a mat-expansion-panel
from Angular Material? I want it to be all white, so you only would see Text and expansion arrow
<mat-accordion>
<mat-expansion-panel class="" (opened)="panelOpenState = true"
(closed)="panelOpenState = false">
<mat-expansion-panel-header>
<mat-panel-title>
<span class="right">Filter</span>
</mat-panel-title>
</mat-expansion-panel-header>
<p><app-data></app-data></p>
</mat-expansion-panel>
</mat-accordion>