Christian Jensen
Christian Jensen
This should do the trick: ` .highlights .highlight-selected .region { border: none; } `
Here's how I am solving it, with [`fontfaceobserver`](https://github.com/bramstein/fontfaceobserver/blob/master/src/observer.js): **app.component.ts** ```typescript export class AppComponent { constructor(renderer: Renderer2) { const materialIcons = new FontFaceObserver('Material Icons'); materialIcons.load(null, 10000) .then(() => this.renderer.addClass(document.body, `${keyword}-loaded`)) .catch(()...
Would love to simply pass in a generic as you said, but I think there a couple ways around this. Using the following middleware as an example: ```ts export const...