All fields are aligned right by default

All forms I'm creating in custom livewire components have the fields align right by default. How do I make these full width and just stack vertically without the gap on the left?
No description
No description
1 Reply
rosstopping
rosstoppingOP4mo ago
I've tried using variations of columns(1) and columnSpan(1) etc but it doesn't seem to change anything. Section::make('Your data') ->columns(1) ->schema([ TextInput::make('name') ->columnSpan(1) ->required() ]), Resolved - Didn't realise I had TailwindCSS v4 installed. Downgrading to v3 fixes this.

Did you find this page helpful?