logo light

Make Filament table Headers sticky using CSS

Image Description
By: Prageeth Peiris
  • Published: 25 Oct 2024 Updated: 25 Oct 2024

Make Filament table Headers sticky using CSS

Add this css to your theme.css file

1div.fi-ta-content{
2 @apply h-screen;
3}
4 
5 
6table.fi-ta-table th{
7 @apply sticky top-0 bg-gray-100 text-gray-700 dark:bg-gray-800 dark:text-gray-200 dark:border-gray-700;
8}

Back to Tricks