Tailwind dark:hidden doesn't work

Hi,
i'm trying to have two versions of the logo by using the dark:hidden class on Filament v3, but it doesn't work.

Here's the code:
<img src="{{ asset('/images/logo.svg') }}" alt="Logo" class="block dark:hidden h-9">
<img src="{{ asset('/images/logodark.svg') }}" alt="Logo" class="hidden dark:block h-9">

Any hint?
Was this page helpful?