static: fix pb-aggregate card not being styled
This commit is contained in:
parent
4b4a49bc66
commit
8b11616cf8
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -9,6 +9,8 @@ import {
|
||||||
import PF from "@patternfly/patternfly/patternfly.css";
|
import PF from "@patternfly/patternfly/patternfly.css";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import PFAddons from "@patternfly/patternfly/patternfly-addons.css";
|
import PFAddons from "@patternfly/patternfly/patternfly-addons.css";
|
||||||
|
// @ts-ignore
|
||||||
|
import PBGlobal from "../../passbook/passbook.css";
|
||||||
|
|
||||||
export interface Route {
|
export interface Route {
|
||||||
url: RegExp;
|
url: RegExp;
|
||||||
|
@ -37,7 +39,7 @@ export class RouterOutlet extends LitElement {
|
||||||
defaultUrl?: string;
|
defaultUrl?: string;
|
||||||
|
|
||||||
static get styles() {
|
static get styles() {
|
||||||
return [PF, PFAddons];
|
return [PF, PFAddons, PBGlobal];
|
||||||
}
|
}
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|
Reference in New Issue