From 24d94e559d1560b0ce61c1652a3850d7ae7fef30 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Tue, 5 Mar 2024 08:00:42 -0500 Subject: [PATCH] Fix issue with "My filters" pane on mobile Related issue: https://github.com/uBlockOrigin/uBlock-issues/issues/3058 --- src/css/dashboard.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/css/dashboard.css b/src/css/dashboard.css index f9f6696fa..ee03ed179 100644 --- a/src/css/dashboard.css +++ b/src/css/dashboard.css @@ -2,7 +2,6 @@ html, body { display: flex; flex-direction: column; height: 100vh; - height: 100svh; justify-content: stretch; overflow: hidden; position: relative; @@ -107,6 +106,9 @@ body.noDashboard #dashboard-nav { } /* touch-screen devices */ +:root.mobile, :root.mobile body { + height: 100svh; + } :root.mobile #dashboard-nav { flex-wrap: nowrap; overflow-x: auto;