Skip to content

💄 update site global layout #90

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14,033 changes: 14,021 additions & 12 deletions public/css/app.css

Large diffs are not rendered by default.

11,606 changes: 11,602 additions & 4 deletions public/css/filament.css

Large diffs are not rendered by default.

73,683 changes: 73,681 additions & 2 deletions public/js/app.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"/js/app.js": "/js/app.js?id=d891a2d14ba2c320f58fd39d97107432",
"/css/app.css": "/css/app.css?id=eaeae4ed6500cc10a072b4753147ef7f",
"/css/filament.css": "/css/filament.css?id=31807c66ef04b2d10d4b1a197a767d07"
"/js/app.js": "/js/app.js",
"/css/app.css": "/css/app.css",
"/css/filament.css": "/css/filament.css"
}
2 changes: 1 addition & 1 deletion resources/views/layouts/default.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

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

Expand Down
4 changes: 3 additions & 1 deletion resources/views/layouts/master.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@
</head>
<body class="h-full font-sans antialiased bg-skin-body text-skin-base">

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

@livewire('livewire-ui-modal')
@livewire('livewire-ui-spotlight')
Expand Down
2 changes: 1 addition & 1 deletion resources/views/user/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

@section('body')

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

<h2 class="text-xl font-bold leading-7 text-skin-inverted sm:text-2xl sm:truncate">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/user/discussions.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

@section('body')

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

<x-user.breadcrumb section="Discussions" />
Expand Down
2 changes: 1 addition & 1 deletion resources/views/user/notifications.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

@section('body')

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

<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">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/user/threads.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

@section('body')

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

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