mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 10:23:30 +00:00
Add full-width and centered layout preferences across the app shell and workspaces. Replace page-size selects with dropdowns and add searchable breadcrumb switching.
21 lines
652 B
PHP
21 lines
652 B
PHP
@props([
|
|
'title' => 'Settings',
|
|
'subtitle' => 'Instance configuration and maintenance',
|
|
])
|
|
|
|
{{-- Same 1180px shell as the workspace. Title hidden only at xl+ (full desktop). --}}
|
|
<div class="mx-auto w-full max-w-none">
|
|
<x-dashboard.navbar section="settings" :title="$title" :subtitle="$subtitle" :titleOnDesktop="false">
|
|
@isset($titleActions)
|
|
<x-slot:titleActions>
|
|
{{ $titleActions }}
|
|
</x-slot:titleActions>
|
|
@endisset
|
|
@isset($actions)
|
|
<x-slot:actions>
|
|
{{ $actions }}
|
|
</x-slot:actions>
|
|
@endisset
|
|
</x-dashboard.navbar>
|
|
</div>
|