I've set a custom register page for a panel x, I used wizard, how can I increase the form width ?
I set this :
public function getMaxContentWidth(): ?string
{
return '5xl';
}
But it doesn't work :/14 Replies
@danharrin How can we customize this?
Yes please 🥺
+1
GitHub
Custom auth page design · filamentphp filament · Discussion #7710
What's the best way to implement a custom design for the auth pages in v3 to match the front end? Just CSS won't work for me, unfortunately. It looks like I'll have to override each aut...
We know how to override auth pages, but our issue is the form width ! I called this :
public function getMaxContentWidth(): ?string
but doesn't work.it will work only inside the panel I think
Any idea guys ? 🙂
A few lines of custom CSS probably?
Hmm, example ?
I don't have one. Do you know how to load a custom CSS file into Filament?
Something like this... adjust to taste
It probably also needs width: 100%.
I think the wizard steps is set to overflow hidden so it isn’t forcing the width out.
min-width worked for me
That too. 😅
Thanks 🙂