How to add extraAttributes (class) to Section container?
My form schema looks like this:
The output on the frontend is below (excerpt from the section). Now I want to add an extra CSS class to the column that contains the last section. Is that possible, and if so - how?
2 Replies
I think you could use hook classes for this. https://filamentphp.com/docs/3.x/support/style-customization#overview
Thanks, that's an interesting approach. But I think this will not get me to the level of just the div
<div style="--col-span-default: 1 / -1;" class="col-[--col-span-default]">
. It has no hook classes. I need a way to get to the parent (container?) of the section. I think...