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?


1 Reply
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.