From 3c816db7b2288754ca56bf856b7303871b01334d Mon Sep 17 00:00:00 2001 From: llcc Date: Tue, 24 May 2022 22:22:26 +0800 Subject: [PATCH] fix footer position in zoomed display mode --- src/main/frontend/mobile/index.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/frontend/mobile/index.css b/src/main/frontend/mobile/index.css index 65c76c5b5..b638f96bf 100644 --- a/src/main/frontend/mobile/index.css +++ b/src/main/frontend/mobile/index.css @@ -186,11 +186,13 @@ html.is-native-android { html.is-zoomed-native-ios { .cp__footer { - height: 60px; + bottom: 70px; + height: 70px; } @media (orientation: landscape) { .cp__footer { + bottom: 50px; height: 50px; } }