Remove padding and border from table in resource
Hello, I want to remove padding and border from a table. The table is in a FilamentPHP resource class. Is it possible? Also, I'd like to preserve styles in other resource classes
Solution:Jump to solution
Check the html in dev tools. There will be be a class higher up the tree like fi-list-resource-<model> you can use that to target based on resources and specific resource pages.
6 Replies
It’s possible with a custom theme and some css.
How can I point to a specific resource class? @awcodes
Solution
Check the html in dev tools. There will be be a class higher up the tree like fi-list-resource-<model> you can use that to target based on resources and specific resource pages.
Iirc it’s on the same element with the fi-page class.
Thank you. Will mark as solved when I'm done