Setting up an accordion from here but the style is not importing correctly. I expected to see gray boxes like this:
GOAL:
However my code looks like this:
app.module imports (using forRoot() because of this):
NgbModule.forRoot()
HTML:
<ngb-accordion #acc="ngbAccordion" activeIds="ngb-panel-0">
  <ngb-panel title="Simple">
    <ng-template ngbPanelContent>
      Hi!
    </ng-template>
  </ngb-panel>
  <ngb-panel>
    <ng-template ngbPanelTitle>
      <span>★ <b>Fancy</b> title ★</span>
    </ng-template>
    <ng-template ngbPanelContent>
      lolzy
    </ng-template>
  </ngb-panel>
</ngb-accordion>


 
    