feat(FN-2998): scope ResearchView bottom safe-area padding to mobile
The merge brings in a fix (FN-2998) that scopes the bottom safe-area padding in ResearchView to mobile devices only, correcting an over-application of the padding on desktop or larger screens. Fusion-Task-Id: FN-2998
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
padding: var(--space-lg);
|
||||
padding-bottom: calc(var(--space-lg) + var(--mobile-nav-height) + env(safe-area-inset-bottom, 0px) + var(--standalone-bottom-gap));
|
||||
padding-bottom: var(--space-lg);
|
||||
}
|
||||
|
||||
.research-view__header {
|
||||
@@ -77,10 +77,17 @@
|
||||
gap: var(--space-xs);
|
||||
}
|
||||
|
||||
.research-view__history-search-row .input {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.research-view__history {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-xs);
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
@@ -175,6 +182,10 @@
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.research-view__finding-actions {
|
||||
margin-top: var(--space-sm);
|
||||
}
|
||||
|
||||
.research-view__events {
|
||||
margin: var(--space-sm) 0 0;
|
||||
padding-left: var(--space-lg);
|
||||
|
||||
Reference in New Issue
Block a user