diff --git a/src/dialogs/more-info/ha-more-info-history-and-logbook.ts b/src/dialogs/more-info/ha-more-info-history-and-logbook.ts index c0ae54602f..5d01b4b0ae 100644 --- a/src/dialogs/more-info/ha-more-info-history-and-logbook.ts +++ b/src/dialogs/more-info/ha-more-info-history-and-logbook.ts @@ -1,4 +1,4 @@ -import { LitElement, html } from "lit"; +import { css, CSSResultGroup, html, LitElement } from "lit"; import { customElement, property } from "lit/decorators"; import { HomeAssistant } from "../../types"; import { @@ -34,6 +34,18 @@ export class MoreInfoHistoryAndLogbook extends LitElement { : ""} `; } + + static get styles(): CSSResultGroup { + return css` + ha-more-info-history, + ha-more-info-logbook { + display: block; + } + ha-more-info-history + ha-more-info-logbook { + margin-top: 16px; + } + `; + } } declare global {