Can you add a custom css class to a form component (like a toggle?)
I have a form inside a grid that all the toggle buttons are aligned to the top - I'd like to have the toggle compnent align vertically with textinput elements in the same row.
Is this possible?
Solution:Jump to solution
->extraAttributes(['class' => 'custom_css'])
->extraInputAttributes(['class' => 'custom_css'])...
4 Replies

You hate stacking the label and toggle (https://filamentphp.com/docs/3.x/forms/fields/toggle#positioning-the-label-above)? Will help make them look aligned.
Solution
->extraAttributes(['class' => 'custom_css'])
->extraInputAttributes(['class' => 'custom_css'])
Awesome - thank you @toeknee !!!
also @Tim van Heugten thank you!