remove padding on section

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

and adding to my theme.css
.no-padding {
padding: 0rem;
}
.no-padding {
padding: 0rem;
}
Or remove the "p-6" in the section content fi-section-content p-6 .
Solution:
->extraAttributes(['class' => 'no-padding'])
->extraAttributes(['class' => 'no-padding'])
```css...
Jump to solution
1 Reply
Solution
LeandroFerreira
LeandroFerreira3mo ago
->extraAttributes(['class' => 'no-padding'])
->extraAttributes(['class' => 'no-padding'])
.no-padding .fi-section-content {
@apply !p-0;
}
.no-padding .fi-section-content {
@apply !p-0;
}

Did you find this page helpful?