From 44e62fbb0495e2a8496e25dc9ba5bd2ad061a69c Mon Sep 17 00:00:00 2001 From: Cody C <50791984+codyc1515@users.noreply.github.com> Date: Fri, 26 Jan 2024 06:23:23 +1300 Subject: [PATCH] Fix text alignment on mobile devices for zha-add-devices-page.ts (#19517) discovery_text ("Make sure your devices are in pairing mode. Check the instructions of your device on how to do this.") is showing left aligned on mobile, which is inconsistent with the discovered_text ("Devices will show up here once discovered.") underneath. --- .../integrations/integration-panels/zha/zha-add-devices-page.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/panels/config/integrations/integration-panels/zha/zha-add-devices-page.ts b/src/panels/config/integrations/integration-panels/zha/zha-add-devices-page.ts index 1cf1a5c5dc..592189279f 100644 --- a/src/panels/config/integrations/integration-panels/zha/zha-add-devices-page.ts +++ b/src/panels/config/integrations/integration-panels/zha/zha-add-devices-page.ts @@ -218,6 +218,7 @@ class ZHAAddDevicesPage extends LitElement { display: flex; flex-direction: column; align-items: center; + text-align: center; } .content { display: flex;