From 72ec8d565c51f3c9eb38db2dcd799ff20d8c3eac Mon Sep 17 00:00:00 2001 From: Egor Date: Sun, 12 Oct 2025 01:58:31 +0300 Subject: [PATCH] Allow installation modal to show full PC app list --- miniapp/index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/miniapp/index.html b/miniapp/index.html index db91048b..e6d6534f 100644 --- a/miniapp/index.html +++ b/miniapp/index.html @@ -4288,6 +4288,7 @@ display: flex; flex-direction: column; overflow: hidden; + min-height: 0; } .guide-modal-header { @@ -4325,6 +4326,9 @@ padding: 0 24px 24px; overflow-y: auto; flex: 1; + min-height: 0; + -webkit-overflow-scrolling: touch; + overscroll-behavior: contain; } .guide-modal-footer { @@ -4334,6 +4338,7 @@ display: flex; flex-direction: column; gap: 12px; + flex-shrink: 0; } .guide-modal-footer .btn { @@ -4363,6 +4368,7 @@ height: 100vh; border-radius: 0; box-shadow: none; + min-height: 0; } .guide-modal-header { @@ -4388,6 +4394,12 @@ padding: 0; } + .installation-card .card-content, + .installation-card-content { + max-height: none; + overflow: visible; + } + .step-final-action { margin-top: 16px; }