Resize section aside heading and description

Using Section how can I change the width of the aside position of heading and description ?
No description
Solution:
source diving, we haven't yet built a sizing method into aside.
Jump to solution
4 Replies
toeknee
toeknee8mo ago
Please provide the code you are using to create that?
Marco Mapelli
Marco Mapelli8mo ago
return $form
->schema([
Section::make('Heading')
->description('')
->aside()
->schema([
Forms\Components\Radio::make('tipo')
->options(ContrattoTipo::class)
->label('TIPO')
->default(ContrattoTipo::Contratto)
->required()
->columnSpanFull()
->columns(2),
])
->columns(5),
...
return $form
->schema([
Section::make('Heading')
->description('')
->aside()
->schema([
Forms\Components\Radio::make('tipo')
->options(ContrattoTipo::class)
->label('TIPO')
->default(ContrattoTipo::Contratto)
->required()
->columnSpanFull()
->columns(2),
])
->columns(5),
...
Solution
toeknee
toeknee8mo ago
source diving, we haven't yet built a sizing method into aside.
toeknee
toeknee8mo ago
You could drop the side, and instead use a Grid type system, or as a very very last resort override the view, but we highly recommend not doing that where absolutely possible.