From 9554f4b66eaa9fdabc906911f296987d617d05d6 Mon Sep 17 00:00:00 2001 From: elpatron Date: Wed, 3 Jun 2026 19:16:56 +0200 Subject: [PATCH] style(client): center PWA update and install banners properly --- client/src/App.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/client/src/App.css b/client/src/App.css index d4c6f26..ea1806b 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -5297,8 +5297,9 @@ html.theme-cupertino .events-scroll-container { /* PWA install prompt */ .pwa-install-banner { position: fixed; - left: 16px; - right: 16px; + left: 0; + right: 0; + width: calc(100% - 32px); bottom: calc(36px + env(safe-area-inset-bottom, 0px)); z-index: 1200; display: grid; @@ -5461,8 +5462,9 @@ html.theme-cupertino .events-scroll-container { .pwa-update-banner { position: fixed; top: calc(12px + env(safe-area-inset-top, 0px)); - left: 16px; - right: 16px; + left: 0; + right: 0; + width: calc(100% - 32px); z-index: 1300; display: grid; grid-template-columns: auto 1fr auto;