fix(layout): fix touch scroll by using height instead of min-height on app-shell

min-height: 100dvh lets the shell grow unbounded, so app-content never
overflows and touch scroll has nothing to scroll. height: 100dvh constrains
the shell to exactly the viewport, making overflow-y: auto on app-content work.
This commit is contained in:
Ulas
2026-04-05 01:52:51 +02:00
parent 1dccba8d96
commit 3b9459cf10
+1 -1
View File
@@ -17,7 +17,7 @@
.app-shell { .app-shell {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
min-height: 100dvh; height: 100dvh;
} }
/* -------------------------------------------------------- /* --------------------------------------------------------