Bug
In list/table view, the last row is clipped at the bottom and can't be scrolled to. Cards view displays all items correctly.
Root Cause
.wx-filemanager is a flex column, but its children don't have min-height: 0. The default min-height: auto prevents the content area from shrinking below its content size, so the Grid expands to its full unscrolled height instead of being constrained and scrolling internally.
Suggested Fix
.wx-filemanager > * {
min-height: 0;
}
Screenshots (from the SVAR File Manager demo)
Cards view — notice the last file is TwoState.css
List view — TwoState.css is cut off and the scrollbar doesn't scroll to the last row
