From fccf0157de4350682158cede3c8aab1e2bb0cd39 Mon Sep 17 00:00:00 2001 From: Sharon Stratsianis Date: Thu, 21 May 2026 14:16:28 +1000 Subject: [PATCH 1/2] #399 fix height and overflow for mobile --- src/styles/mash.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/styles/mash.css b/src/styles/mash.css index cb32d375..ff97f3b0 100644 --- a/src/styles/mash.css +++ b/src/styles/mash.css @@ -29,10 +29,11 @@ body { padding-top: 0; display: flex; flex-direction: column; - height: 100dvh; - min-height: auto; + height: auto; + min-height: 100dvh; min-width: 375px; - overflow: hidden; + overflow-x: hidden; + overflow-y: auto; font-family: inherit; font-size: inherit; line-height: inherit; @@ -76,7 +77,8 @@ body { flex: 1 1 auto; /* let the wrapper grow inside body's flex column */ min-height: 0; margin-top: var(--app-header-height); - height: calc(100dvh - var(--app-header-height)); + height: auto; + min-height: calc(100dvh - var(--app-header-height)); top: auto; } From 2b4711ea865cfd5eef840c6e0897992ee8805037 Mon Sep 17 00:00:00 2001 From: Sharon Stratsianis Date: Thu, 21 May 2026 18:18:45 +1000 Subject: [PATCH 2/2] #399 overflow auto --- src/styles/mash.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/styles/mash.css b/src/styles/mash.css index ff97f3b0..baca80a9 100644 --- a/src/styles/mash.css +++ b/src/styles/mash.css @@ -32,8 +32,7 @@ body { height: auto; min-height: 100dvh; min-width: 375px; - overflow-x: hidden; - overflow-y: auto; + overflow: auto; font-family: inherit; font-size: inherit; line-height: inherit;