What's the correct approach to load filament styles in a frontend page?

I have created a Livewire full page component rendering a form using Filament's form builder as per the docs: https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component. What's the correct approach to load the necessary base styles for the form? My layout file includes the following section in the head:
@filamentStyles
@vite('resources/css/app.css')
@filamentStyles
@vite('resources/css/app.css')
However this doesn't seem to be enough as for example focus styles are missing on the input fields.
5 Replies
Lara Zeus
Lara Zeus2d ago
I always forget the presets: [preset], part 🙂
Julien B. (aka yebor974)
Filament Mastery
Guide to using Filament Components in public-facing pages - Filamen...
Learn how to integrate Filament components into your public-facing pages with this step-by-step guide.
Julien B. (aka yebor974)
Maybe can help you
Fayne
FayneOP2d ago
@Lara Zeus Thank you 🙂 I was aware of this approach but looking for a solution without having to create a tailwind.config.js (tailwindcss v4). I've missed the specific comments on that topic in the docs you've linked. Seems to not be possible before Filament version 4.
Filament uses Tailwind CSS v3 for styling. If your project uses Tailwind CSS v4, you will unfortunately need to downgrade it to v3 to use Filament. Filament v3 can’t support Tailwind CSS v4 since it introduces breaking changes. Filament v4 will support Tailwind CSS v4.

Did you find this page helpful?