Tailwind setup not entirely working

So the project route has this layout
import preset from './vendor/filament/support/tailwind.config.preset'

export default {
    presets: [preset],
    content: [
        './app/Filament/**/*.php',
        './resources/views/pages/**/*.blade.php',
        './resources/views/livewire/**/*.blade.php',
        './resources/views/filament/**/*.blade.php',
        './vendor/filament/**/*.blade.php',
    ],
}


I see there is also a tailwind.config.js located inside resources/css/filament/admin after I follow the steps for custom theme styling.

However, tailwind properties aren't working, such as sm:justify-center etc, and im so confused why
Was this page helpful?