From 6890823c3182f58eafee8020d5809ef46791c682 Mon Sep 17 00:00:00 2001 From: Wendelin <12148533+wendevlin@users.noreply.github.com> Date: Mon, 24 Nov 2025 10:49:13 +0100 Subject: [PATCH] Make login button full width (#28072) --- src/auth/ha-auth-flow.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/auth/ha-auth-flow.ts b/src/auth/ha-auth-flow.ts index 85446f199b..755a3e73bc 100644 --- a/src/auth/ha-auth-flow.ts +++ b/src/auth/ha-auth-flow.ts @@ -2,8 +2,8 @@ import { genClientId } from "home-assistant-js-websocket"; import type { PropertyValues } from "lit"; import { html, LitElement, nothing } from "lit"; -import { keyed } from "lit/directives/keyed"; import { customElement, property, state } from "lit/decorators"; +import { keyed } from "lit/directives/keyed"; import type { LocalizeFunc } from "../common/translations/localize"; import "../components/ha-alert"; import "../components/ha-button"; @@ -118,6 +118,9 @@ export class HaAuthFlow extends LitElement { display: block; margin-top: 16px; } + .action ha-button { + width: 100%; + }
`;