From 6f351f8bc15299b569223e00a1c8a97fe65dc817 Mon Sep 17 00:00:00 2001 From: MarekWo Date: Fri, 26 Dec 2025 08:11:56 +0100 Subject: [PATCH] fix(dm): Fix mobile menu link and page height issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change DM menu link from to - +
diff --git a/app/templates/dm.html b/app/templates/dm.html index ff30090..8d77f7c 100644 --- a/app/templates/dm.html +++ b/app/templates/dm.html @@ -57,6 +57,32 @@ max-width: 100%; } } + + /* DM page layout - ensure proper height on mobile */ + html, body { + height: 100vh; + height: 100dvh; /* Dynamic viewport height for mobile */ + margin: 0; + overflow: hidden; + } + body { + display: flex; + flex-direction: column; + } + main { + flex: 1; + overflow: hidden; + display: flex; + flex-direction: column; + min-height: 0; + } + .dm-page-container { + flex: 1; + display: flex; + flex-direction: column; + min-height: 0; + overflow: hidden; + } @@ -82,9 +108,9 @@
-
+
-
+
@@ -100,9 +126,9 @@
-
+
-
+
-
+
-
+
Ready