From fa1d45635b06df1b6833e6df0e3cda533cc5481d Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Fri, 28 Jun 2024 20:40:57 +0300 Subject: [PATCH] Put mobile height fix under a breakpoint --- public/css/popup.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/public/css/popup.css b/public/css/popup.css index d09744933..3a1881353 100644 --- a/public/css/popup.css +++ b/public/css/popup.css @@ -32,7 +32,7 @@ dialog { flex-direction: column; overflow: hidden; width: 100%; - height: auto; + height: 100%; padding: 1px; } @@ -170,3 +170,9 @@ body.no-blur .popup[open]::backdrop { /* Fix weird animation issue with font-scaling during popup open */ backface-visibility: hidden; } + +@media screen and (max-width: 1000px) { + .popup .popup-body { + height: auto; + } +}