Matt

Results 4 comments of Matt

Just a heads up, if you also include bootstrap css in your project, that might be the reason. Since the material loading indicator html looks like this: ```html ``` The...

Actually, after further investigation, the bootstrap styling only messes with the width of the loader, it doesn't hide it. I found what is hiding it though. There's a `position: relative`...

In the component that hosts the ``, I basically added this scss: ```css ::ng-deep { .progress-linear { position: relative !important; .container { max-width: 100% !important; } } } ```

@ethanshry See https://github.com/apollographql/graphql-tag/issues/59 - I had the same issue until I added a definition type to my project with this: ``` declare module '*.graphql' { import {DocumentNode} from 'graphql'; const...