fix: enable scrollbar on detail panel tab content
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 59s
CI / docker (push) Successful in 51s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 36s

The flex chain from detailArea → detailPanel → tabContent lacked
min-height: 0, so flex children never shrank below content height
and overflow-y: auto never triggered. Added min-height: 0 and
flex: 1 to propagate the height constraint correctly.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-27 20:05:48 +01:00
parent 5306be3f2e
commit ac750b603f

View File

@@ -75,6 +75,8 @@
.detailArea { .detailArea {
overflow: hidden; overflow: hidden;
min-height: 120px; min-height: 120px;
display: flex;
flex-direction: column;
} }
.loadingState { .loadingState {
@@ -109,6 +111,8 @@
overflow: hidden; overflow: hidden;
background: var(--bg-surface, #FFFFFF); background: var(--bg-surface, #FFFFFF);
border-top: 1px solid var(--border, #E4DFD8); border-top: 1px solid var(--border, #E4DFD8);
flex: 1;
min-height: 0;
} }
.processorHeader { .processorHeader {
@@ -220,6 +224,7 @@
========================================================================== */ ========================================================================== */
.tabContent { .tabContent {
flex: 1; flex: 1;
min-height: 0;
overflow-y: auto; overflow-y: auto;
padding: 10px 14px; padding: 10px 14px;
} }