Kuechlin / mantine-data-grid

mantine data grid
MIT License
176 stars 29 forks source link

withFixedHeader and withRowSelection allows checkboxes to scroll above the fixed header. #148

Closed naughton closed 1 year ago

naughton commented 1 year ago

Description

The zIndex of the fixed header is lower than the checkboxes from withRowSelection being scrolled through it.

Expected Behaviour

the checkboxes from the rows should go behind the <thead>

Additional Information

This fixes it.

styles={theme => ({ thead: { zIndex: 2 } })}