Попробуйте сделать вот так
в theme.scss вы написали
// Define the theme.
$component1-primary: mat-palette($mat-indigo);
$component1-accent: mat-palette($mat-pink, A200, A100, A400);
$component1-theme: mat-light-theme($candy-app-primary, $candy-app-accent);
// Include the theme styles for only specified components.
.component1-light-theme{
@include angular-material-theme($component1-theme);
}
добавьте целый родительский элемент к вашему компоненту и добавьте component1-light-theme к этому элементу, например
в компоненте html
<div class="component1-light-theme">
//all other elements
</div>