static: fix pb-aggregate card not being styled

This commit is contained in:
Jens Langhammer 2020-11-22 20:54:05 +01:00
parent 4b4a49bc66
commit 8b11616cf8
3 changed files with 7 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -9,6 +9,8 @@ import {
import PF from "@patternfly/patternfly/patternfly.css";
// @ts-ignore
import PFAddons from "@patternfly/patternfly/patternfly-addons.css";
// @ts-ignore
import PBGlobal from "../../passbook/passbook.css";
export interface Route {
url: RegExp;
@ -37,7 +39,7 @@ export class RouterOutlet extends LitElement {
defaultUrl?: string;
static get styles() {
return [PF, PFAddons];
return [PF, PFAddons, PBGlobal];
}
constructor() {