Custom widget not read Tailwindcss classes

Hi everyone,
i' ve this simple custom widget:
php 
<x-filament-panels::page>
    <x-filament::section>
        <x-filament::card>
            @if ($quote)
                <blockquote class="text-xl italic text-gray-700">
                    “{{ $quote->quote }}”
                </blockquote>

                <p class="mt-2 text-sm self-end text-red-500">
                    — {{ $quote->user->name }}
                </p>
            @else
                <p>No quote.</p>
            @endif
        </x-filament::card>
    </x-filament::section>
</x-filament-panels::page>

but i can't figure out why the classes weren't applied once browser loaded.
are you experiencing it too?

PS:
the same code in v3 works!
Was this page helpful?