FilamentF
Filament13mo ago
ddoddsr

remove padding on section

I'm trying to remove the padding on a form section useing:
->extraAttributes(['class'=>'no-padding'])

and adding to my theme.css
.no-padding {
    padding: 0rem;
}



Or remove the "p-6" in the section content fi-section-content p-6 .
Solution
->extraAttributes(['class' => 'no-padding'])


.no-padding .fi-section-content {
    @apply !p-0;
}
Was this page helpful?