From a8e6557b090c93f094ed1f571234c78f8151085a Mon Sep 17 00:00:00 2001 From: Aidan Timson Date: Fri, 7 Nov 2025 10:49:23 +0000 Subject: [PATCH] Fix --- logs/src/logs-app.ts | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/logs/src/logs-app.ts b/logs/src/logs-app.ts index 70d8f6b1ef..1c15d5622c 100644 --- a/logs/src/logs-app.ts +++ b/logs/src/logs-app.ts @@ -1,14 +1,17 @@ import { LitElement, css, html } from "lit"; import { customElement } from "lit/decorators"; +import "../../../src/components/ha-card"; @customElement("logs-app") class LogsApp extends LitElement { render() { return html` -
-

Logs Application

-

This is a minimal logs frontend application.

-
+
+ +

Home Assistant Logs

+

View and search logs to diagnose issues

+
+
`; } @@ -20,21 +23,21 @@ class LogsApp extends LitElement { } .container { - padding: var(--ha-space-3xl); + padding: var(--ha-space-12); max-width: 1200px; margin: 0 auto; } h1 { font-size: var(--ha-font-size-4xl); - font-weight: var(--ha-font-weight-regular); - line-height: var(--ha-line-height-tight); - margin: 0 0 var(--ha-space-md) 0; + font-weight: var(--ha-font-weight-normal); + line-height: var(--ha-line-height-condensed); + margin: 0 0 var(--ha-space-4) 0; color: var(--ha-color-text-primary); } p { - font-size: var(--ha-font-size-md); + font-size: var(--ha-font-size-m); line-height: var(--ha-line-height-normal); color: var(--ha-color-text-secondary); }