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