I'm trying to overlay a loading spinner using the Teradata / covalent UI kit, as shown in this example, however it simply won't show, no matter what I try.
I've put together a single use example here, any suggestions welcome.
Asked
Active
Viewed 468 times
0

John B
- 1,129
- 14
- 23
1 Answers
1
It is important to load the SCSS styles for the loading spinner to appear. I recreated your example on StackBlitz and was able to have the spinner load correctly. The Angular-CLI might not be compiling your theme.scss
because it is in the assets folder.

Chic
- 9,836
- 4
- 33
- 62
-
Amazing, thank you. I'll have to dig through to pick it all apart, where did you get the style.scss from, I obviously missed a heap in my example which I copied from the getting started guide (not to mention if it wasn't being applied) – John B Feb 07 '18 at 20:42
-
1You're welcome! The scss is from the [Covalent Stackblitz Template](https://stackblitz.com/edit/covalent?file=theme.scss). – Chic Feb 07 '18 at 21:46
-
Had a look through it with my glasses on and I was importing from @covalent/core instead of @covalent/core/loading, that managed to fix it all, thanks again :) – John B Feb 08 '18 at 10:59