web: remove COMMON_STYLES from message

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-03-17 13:23:33 +01:00
parent 6eb0583eeb
commit 2698d9d23a
4 changed files with 15 additions and 9 deletions

View File

@ -1,7 +1,7 @@
import { CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element";
import PFEmptyState from "@patternfly/patternfly/components/EmptyState/empty-state.css";
import PFBase from "@patternfly/patternfly/patternfly-base.css";
import FA from "@fortawesome/fontawesome-free/css/fontawesome.css";
import PFBase from "@patternfly/patternfly/patternfly-base.css";
@customElement("ak-empty-state")
export class EmptyState extends LitElement {
@ -13,7 +13,7 @@ export class EmptyState extends LitElement {
header?: string;
static get styles(): CSSResult[] {
return [PFEmptyState, PFBase, FA];
return [PFBase, FA, PFEmptyState];
}
render(): TemplateResult {