Remove box-shadow from Angular Material <mat-chip>
Adding the following CSS with !important did the trick:
mat-chip {
transition: none !important;
box-shadow: none !important;
}
To all new readers coming to read this post. Apply this class in your 'mat-chip' element to remove z index. This will remove shadow also.
class="mat-elevation-z0"