From 67b2f206f2e6698792ee98e3ac4478a03c67f463 Mon Sep 17 00:00:00 2001 From: charlie Date: Tue, 22 Jul 2025 12:15:34 +0800 Subject: [PATCH] fix(mobile): incorrect scroll for the block modal page --- src/main/mobile/components/app.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/mobile/components/app.css b/src/main/mobile/components/app.css index 12f761233c..ffa5a5c667 100644 --- a/src/main/mobile/components/app.css +++ b/src/main/mobile/components/app.css @@ -23,9 +23,19 @@ html.is-native-android { } html.has-mobile-keyboard { + body { + @apply overflow-hidden + } + #mobile-editor-toolbar { @apply opacity-100; } + + .block-modal-page { + .app-silk-scroll-content-inner { + padding-bottom: calc(var(--ls-native-kb-height, 0px) + 64px); + } + } } html {