FilamentF
Filament2y ago
Maru

Dashboard responsive columns not working as I expected

This is my custom dashboard code

class UserDashboard extends Dashboard
{

    public function getColumns(): int|string|array
    {
        return [
            'xl' => 2,
            'md' => 2,
            'sm' => 1,
        ];
    }

}


It seems that the sm breakpoints not working? or you guys have any clue?, The md and xl just working as I expected, and I'm not customizing my chart's columnspan
Screenshot_from_2024-06-09_16-00-02.png
Was this page helpful?