Попробуйте ниже.В основном вам нужно использовать ::ng-deep
// You can use /deep/ also
::ng-deep .mat-form-field-underline {
// background: red !important;
height: 0 !important;
}
В случае, если вас беспокоит предупреждение об устаревании, вы можете сделать ViewEncapsulation равным None, как показано ниже
import {Component, ViewEncapsulation} from '@angular/core';
@Component({
selector: 'form-example',
templateUrl: 'form-example.html',
styleUrls: ['form-example.css'],
encapsulation: ViewEncapsulation.None
})
.mat-form-field-underline {
height: 0 !important;
}