diff --git a/src/panels/config/integrations/ha-config-integrations.ts b/src/panels/config/integrations/ha-config-integrations.ts index 15dd7a88e8..b078c127c6 100644 --- a/src/panels/config/integrations/ha-config-integrations.ts +++ b/src/panels/config/integrations/ha-config-integrations.ts @@ -385,8 +385,9 @@ class HaConfigIntegrations extends SubscribeMixin(LitElement) { aria-label=${this.hass.localize("ui.panel.config.integrations.new")} title=${this.hass.localize("ui.panel.config.integrations.new")} @click=${this._createFlow} - ?rtl=${computeRTL(this.hass!)} + ?is-wide=${this.isWide} ?narrow=${this.narrow} + ?rtl=${computeRTL(this.hass!)} > `; @@ -643,6 +644,10 @@ class HaConfigIntegrations extends SubscribeMixin(LitElement) { right: 16px; z-index: 1; } + ha-fab[is-wide] { + bottom: 24px; + right: 24px; + } ha-fab[narrow] { bottom: 84px; } @@ -650,6 +655,11 @@ class HaConfigIntegrations extends SubscribeMixin(LitElement) { right: auto; left: 16px; } + ha-fab[is-wide].rtl { + bottom: 24px; + left: 24px; + right: auto; + } paper-menu-button { color: var(--secondary-text-color); padding: 0;