Skip to content

Commit

Permalink
Fix mobile layout
Browse files Browse the repository at this point in the history
  • Loading branch information
RMartinOscar committed Jan 4, 2025
1 parent 8145115 commit 849bfbb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ public function form(Form $form): Form
->default(fn () => ($this->node = Node::query()->latest()->first())?->id)
->columnSpan([
'default' => 2,
'sm' => 1,
'md' => 2,
'sm' => 3,
'md' => 3,
'lg' => 3,
])
->live()
Expand All @@ -135,8 +135,8 @@ public function form(Form $form): Form
->label('Owner')
->columnSpan([
'default' => 2,
'sm' => 1,
'md' => 2,
'sm' => 3,
'md' => 3,
'lg' => 3,
])
->relationship('user', 'username')
Expand Down

0 comments on commit 849bfbb

Please sign in to comment.