style isn't applied in blade
i have a simple
ViewField
usage in my form
blade:
as shown in the image attached no style is applied
i tried to restart the dev server , clear cache...etc still same
laravel 12 + flphp v4 + tailwindcss v4
11 Replies
You are likely using custom classes, make sur eyou are using a custom filament theme so we build those classes in.
none is custom , it's literally just plain tailwindcss
ensure that your have include this in your resources/css/app.css file
@source '../views';
then run npm run build and add app.css and add it to your AppServiceProvider
has
it's plain tailwind, but if we are not using the classses then they will not be compiled.
that's why custom themes are needed, so they are building the assets.
i see
Filament is performant, we don't load ALL the tailwind styles. We compiled what is needed.
@toeknee @Zen Dev it seems just using button blade component is better approach than doing a whole theme just for a button
yes it geneally is for consitency
this is much better
changed to solved