danielschmitz / my-sales-aapp

This is the project from my book Angular from Scratch
https://leanpub.com/book-angular/
7 stars 2 forks source link

5.4 Adding Loding Spinner to an Material Button #6

Open joeromine opened 2 years ago

joeromine commented 2 years ago

I'm unable to see the spinner on top of the Save button in the category-form component. It looks like the mat-raised-button class is the culprit. It's setting the display: none in the mat-focus-indicator class.

I believe setting the display: inline for the mat-focus-indicator class in styles.css should fix the issue.

/ SPINNER / button.mat-focus-indicator:before{ display: inline; }

danielschmitz commented 2 years ago

hi. i will check