I want to get rid of the header navigation on the material stepper. Please suggest how can I do it? I tried setting the following css but didn\'t seems to work:
You need to use a combination of ::ng-deep to get around shadow DOM and the !important flag to get around Materials own stylings:
::ng-deep
!important
::ng-deep .mat-horizontal-stepper-header-container { display: none !important; }