App Dropdowns full width

All dropdowns of the app are "full width", actually they are with a strange positioning.
I've tried filament:upgrade, npm run dev, npm run build, remove node_modules... nothing worked.
I do not have a custom theme or any custom css

I have this bit of code in the AdminPanelProvider, to handle the hot reload:
public function register(): void
{
    parent::register();
    FilamentView::registerRenderHook('panels::body.end', function (): string {
        return Blade::render('@vite("resources/js/app.js")');
    });
}
Was this page helpful?