feat(FN-3912): make research view scrollable on mobile

Fixes the research view to scroll properly on mobile by adding the necessary CSS, accompanied by a regression test to prevent the issue from recurring.

Fusion-Task-Id: FN-3912
This commit is contained in:
Fusion
2026-05-09 23:35:43 -07:00
committed by gsxdsm
parent c90389a14a
commit 471806dd25
2 changed files with 19 additions and 4 deletions

View File

@@ -200,12 +200,23 @@
@media (max-width: 768px) {
.research-view {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding: var(--space-md);
padding-bottom: calc(var(--space-md) + var(--mobile-nav-height) + env(safe-area-inset-bottom, 0px) + var(--standalone-bottom-gap));
}
.research-view__layout {
display: flex;
flex-direction: column;
grid-template-columns: minmax(0, 1fr);
flex: initial;
}
.research-view__history {
flex: initial;
min-height: initial;
overflow: visible;
}
.research-view__header {