crate / crate-admin

The admin user interface for CrateDB.
Apache License 2.0
26 stars 19 forks source link

Keep header with column names visible when scrolling through results #840

Open robd003 opened 8 months ago

robd003 commented 8 months ago

It would be really helpful if the column names were always visible when scrolling through results

Example CSS to make this work:

th.header {
    position: sticky;
    top: 0;
}