fix scroll on mobile

This commit is contained in:
Greg Shuflin 2025-02-06 02:21:56 -08:00
parent c7c3fa1906
commit 65520644ee

View File

@ -67,6 +67,18 @@
body.with-sidebar {
display: block;
}
.main-content-area {
height: 100vh;
display: flex;
flex-direction: column;
}
#main-content {
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}
}
.sidebar h2 {