Warning Element: Fix Overflow in Entity Row (#7193)

This commit is contained in:
Zack Barett 2020-10-02 11:29:29 -05:00 committed by Bram Kragten
parent 6d3010dcc7
commit ecc7925d03

View File

@ -1,3 +1,4 @@
import { STATE_NOT_RUNNING } from "home-assistant-js-websocket";
import {
css,
CSSResult,
@ -7,7 +8,6 @@ import {
TemplateResult,
} from "lit-element";
import { HomeAssistant } from "../../../types";
import { STATE_NOT_RUNNING } from "home-assistant-js-websocket";
export const createEntityNotFoundWarning = (
hass: HomeAssistant,
@ -35,6 +35,7 @@ export class HuiWarning extends LitElement {
color: black;
background-color: #fce588;
padding: 8px;
word-break: break-word;
}
`;
}