fix: restore exchange table scroll by adding flex constraints to tableWrap
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m24s
CI / docker (push) Successful in 1m32s
CI / cleanup-branch (pull_request) Has been skipped
CI / deploy (push) Has been skipped
CI / build (pull_request) Successful in 1m45s
CI / docker (pull_request) Has been skipped
CI / deploy (pull_request) Has been skipped
CI / deploy-feature (pull_request) Has been skipped
CI / deploy-feature (push) Successful in 48s

The tableSection card wrapper broke the flex height chain — DataTable's
fillHeight couldn't constrain to viewport. Added .tableWrap with
flex: 1, min-height: 0, display: flex to re-establish the chain.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-09 19:20:50 +02:00
parent 374131b7b5
commit ca18e58f5e
2 changed files with 9 additions and 1 deletions

View File

@@ -29,6 +29,14 @@
color: var(--text-primary);
}
/* Table card must fill remaining height and allow DataTable to scroll internally */
.tableWrap {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
}
/* Status cell */
.statusCell {
display: flex;