You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ui): no horizontal scroll on results table — only the log panel scrolls
The results table-wrap set only overflow-y:auto. Per the CSS overflow spec,
when one axis is non-visible the other computes from `visible` to `auto`, so
the table scrolled sideways whenever its columns slightly overflowed. Pin
overflow-x:hidden on .table-wrap (live + admin) and .results-head-wrap
(admin) so the table fits its column and cells ellipsis-truncate. The live
log panel (.logs) keeps overflow-x:auto — horizontal scroll stays scoped to
the log section on both the public live page and admin, as intended.
0 commit comments