I'm having an issue implementing an Angular Material Stepper in my app. The general functionality seems to work fine, validation, not letting the user progress until all fields are completed and general look of the form.
However the stepper text, bubble, highlighted stage and the vertical line between stages is not showing as they should (see images).
How it currently looks...
How it should look...
I have read about using ::ng-deep in the scss file but I'm getting an error of "validation css 4.0 - ng-deep is not a valid pseudo element".
I placed
<link href="https://fonts.googleapis.com/icon?family=Material+Icons&display=block" rel="stylesheet">
in the head of my index.html too but that doesn't seem to help.I have imported MatStepperModule, FormsModule, ReactiveFormsModule and MatIconModule in my component.module.ts and have BrowserAnimationsModule in my app.module.ts & all under imports[]
Broad question but is there anything I could be missing?