Filament and blade
I have custom filament pages, whihch uses livewire. The tailwind classes I use for color and styling are not applied to the view. But the classes are present in the HTML. I think, I'm missing something on the configuration setup. Couldn't able to figure out which?
Solution:Jump to solution
You need to create a theme because otherwise you use Filaments CSS file which only has the TW classes that were needed from Filament itself.
3 Replies
Solution
You need to create a theme because otherwise you use Filaments CSS file which only has the TW classes that were needed from Filament itself.
thank you, it solved my issue
.fi-section-header {
@apply bg-purple-500;
}
this one is more helpful
Glad I could help