Using a theme seems to discard default styles?
I want to use a few tailwind classes that are not in the standard build, so from the documentation I understand I need to make a theme.
So I made a simple theme just to run the recompile, and added it to webpack config and reran the npm run prod step.
After npm run prod I can now use the custom colors and classes that I needed, but a lot of the default styling is lost, ie. the tabs no longer work and buttons become white on white.
Is there something I am missing ?
Solution:Jump to solution
Thanks for confirming.
Found out that the missing background color on buttons was relating to a bg-custom class, so I added a custom color to the list and colors are back, the tab system not working seems to have been a fluke, its working now.
```...
4 Replies
what's in your resources/css/filament/admin/theme.css?
for some reason when I upgraded to v3 my panel became app not admin, so in resources/css/filament/app/theme.css I have
and in my mix file
The path that is it including does exist
hmm. that looks ok.
Solution
Thanks for confirming.
Found out that the missing background color on buttons was relating to a bg-custom class, so I added a custom color to the list and colors are back, the tab system not working seems to have been a fluke, its working now.