From 5c77bbfdc327f3c836f50884de08670f6475307c Mon Sep 17 00:00:00 2001 From: elpatron Date: Wed, 3 Jun 2026 19:15:09 +0200 Subject: [PATCH] style(client): hide version footer on mobile when bottom navigation is active --- client/src/App.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/src/App.css b/client/src/App.css index cda022a..d4c6f26 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -5585,6 +5585,12 @@ html.theme-cupertino .events-scroll-container { pointer-events: none; } +@media (max-width: 768px) { + body:has(.app-bottom-nav) .app-version-footer { + display: none; + } +} + .app-version-footer a, .app-version-footer button { pointer-events: auto;