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 GitHub
parent 72aa9a3b62
commit 601c909004
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}
`;
}