F
Filamentβ€’4mo ago
Mehmet K.

Can we prevent Wizard from moving off the page?

Is there a way to prevent this wizard from overflowing when there is a lot of space?
No description
2 Replies
Jo
Joβ€’4mo ago
You should just be able to add ->columnSpanFull() to the end of the whole thing. Please share your Wizard code if you're unsure. Also, if that doesn't work then it means you're already at the max width of the main container so although you can see extra space, it's not "really" there. You'd have to expand the entire main container to use that space in your panel provider using maxContentWidth():
use Filament\Panel;
use Filament\Support\Enums\MaxWidth;

public function panel(Panel $panel): Panel
{
return $panel
// ...
->path('app')
->maxContentWidth(MaxWidth::Full);
}
use Filament\Panel;
use Filament\Support\Enums\MaxWidth;

public function panel(Panel $panel): Panel
{
return $panel
// ...
->path('app')
->maxContentWidth(MaxWidth::Full);
}
Mehmet K.
Mehmet K.β€’4mo ago
Thank you Solved πŸ™‚