FilamentF
Filament3y ago
7 replies
Darnes

How can customize table row height , padding ?

I try to change the row height of filament table but I do not see any thing about it in document .
Solution
Just add basic custom css? I used:

.fi-ta-ctn .py-4 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}
Was this page helpful?