Skip to content

Commit a1f2500

Browse files
authored
💄 update site global layout (#90)
1 parent 2f369ce commit a1f2500

10 files changed

+99315
-27
lines changed

public/css/app.css

+14,021-12
Large diffs are not rendered by default.

public/css/filament.css

+11,602-4
Large diffs are not rendered by default.

public/js/app.js

+73,681-2
Large diffs are not rendered by default.

public/mix-manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"/js/app.js": "/js/app.js?id=d891a2d14ba2c320f58fd39d97107432",
3-
"/css/app.css": "/css/app.css?id=eaeae4ed6500cc10a072b4753147ef7f",
4-
"/css/filament.css": "/css/filament.css?id=31807c66ef04b2d10d4b1a197a767d07"
2+
"/js/app.js": "/js/app.js",
3+
"/css/app.css": "/css/app.css",
4+
"/css/filament.css": "/css/filament.css"
55
}

resources/views/layouts/default.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<x-layouts.header class="header" />
66

7-
<x-container class="py-10 max-w-7xl mx-auto px-4">
7+
<x-container class="flex-1 w-full py-10 max-w-7xl mx-auto px-4">
88
@yield('body')
99
</x-container>
1010

resources/views/layouts/master.blade.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@
4545
</head>
4646
<body class="h-full font-sans antialiased bg-skin-body text-skin-base">
4747

48-
@yield('content')
48+
<div class="min-h-screen flex flex-col justify-between">
49+
@yield('content')
50+
</div>
4951

5052
@livewire('livewire-ui-modal')
5153
@livewire('livewire-ui-spotlight')

resources/views/user/dashboard.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@section('body')
77

8-
<div class="flex-1 min-w-0">
8+
<div>
99
<x-status-message class="mb-5" />
1010

1111
<h2 class="text-xl font-bold leading-7 text-skin-inverted sm:text-2xl sm:truncate">

resources/views/user/discussions.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@section('body')
77

8-
<div class="flex-1 min-w-0">
8+
<div>
99
<x-status-message class="mb-5" />
1010

1111
<x-user.breadcrumb section="Discussions" />

resources/views/user/notifications.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@section('body')
77

8-
<div class="flex-1 min-w-0">
8+
<div>
99
<x-user.breadcrumb section="Notifications" />
1010

1111
<h2 class="inline-flex items-center gap-x-2 text-xl font-bold leading-7 text-skin-inverted sm:text-2xl sm:truncate font-heading">

resources/views/user/threads.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@section('body')
77

8-
<div class="flex-1 min-w-0">
8+
<div>
99
<x-status-message class="mb-5" />
1010

1111
<x-user.breadcrumb section="Sujets" />

0 commit comments

Comments
 (0)