From 15eab18e07589d7c0efc3eef92c103047f880a4a Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Tue, 2 May 2023 11:12:13 +0200 Subject: [PATCH] Reduce height for config entry list in integration page (#16370) --- src/panels/config/integrations/ha-integration-card.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/panels/config/integrations/ha-integration-card.ts b/src/panels/config/integrations/ha-integration-card.ts index f9c56194a1..12a13a6cc5 100644 --- a/src/panels/config/integrations/ha-integration-card.ts +++ b/src/panels/config/integrations/ha-integration-card.ts @@ -174,9 +174,11 @@ export class HaIntegrationCard extends LitElement { ${this.items.map( (item) => html`${item.title || this.hass.localize( "ui.panel.config.integrations.config_entry.unnamed_entry" @@ -1026,6 +1028,9 @@ export class HaIntegrationCard extends LitElement { ha-list-item ha-svg-icon { color: var(--secondary-text-color); } + .config-entry { + height: 36px; + } ha-icon-next { width: 24px; }