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:
@@ -17,7 +17,7 @@
|
||||
.app-shell {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100dvh;
|
||||
height: 100dvh;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user