From 3a700aebcc5879d6395527b2cd9c49bed98c1b92 Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Tue, 28 Mar 2023 14:40:02 +0200 Subject: [PATCH] Improve padding to avoid input number overflow (#15888) --- src/dialogs/more-info/ha-more-info-info.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs/more-info/ha-more-info-info.ts b/src/dialogs/more-info/ha-more-info-info.ts index e9d59d3b62..858d0110bc 100644 --- a/src/dialogs/more-info/ha-more-info-info.ts +++ b/src/dialogs/more-info/ha-more-info-info.ts @@ -98,7 +98,7 @@ export class MoreInfoInfo extends LitElement { display: flex; flex-direction: column; flex: 1; - padding: 8px 24px 24px 24px; + padding: 24px; padding-bottom: max(env(safe-area-inset-bottom), 24px); }