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";
|
||||
// @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() {
|
||||
|
|
Reference in New Issue