Skip to content

Commit 2d64dae

Browse files
committed
Merge branch 'main' into 4.x
2 parents ff5ff68 + acad986 commit 2d64dae

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

docs/src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let { navigation = null } = Astro.props
1717
class="sticky top-0 z-50 px-4 py-3 border-b border-b-fair-pink dark:border-b-gray-800 transition duration-500 sm:px-6 lg:px-8 bg-cream dark:bg-[#171527]"
1818
>
1919
<div
20-
class="w-full max-w-8xl mx-auto flex flex-wrap gap-5 items-center justify-between sm:flex-nowrap"
20+
class="w-full max-w-9xl mx-auto flex flex-wrap gap-5 items-center justify-between sm:flex-nowrap"
2121
>
2222
<div class="relative flex flex-grow basis-0 items-center gap-3">
2323
<div class="flex lg:hidden">

docs/src/layouts/BaseLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);
131131
banner: null,
132132
}"
133133
x-init="banner = Math.floor(Math.random() * 4)"
134-
class="max-w-8xl flex items-center justify-center mx-auto px-4 py-1.5 sm:px-6 lg:px-8 text-sm text-center text-white min-h-9"
134+
class="max-w-9xl flex items-center justify-center mx-auto px-4 py-1.5 sm:px-6 lg:px-8 text-sm text-center text-white min-h-9"
135135
>
136136
<span x-show="banner === 0">
137137
Looking for dedicated help with your Filament project? Work with <a href="https://kirschbaumdevelopment.com?ref=filamentphp.com" target="_blank" class="underline">Kirschbaum</a>, the official Filament-partnered development agency.

docs/src/styles/tailwind.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
--font-mono: 'Jetbrains Mono', 'sans-serif';
2929

3030
--spacing-8xl: 88rem;
31+
--spacing-9xl: 92rem;
3132
}
3233

3334
@theme inline {

tailwind.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ module.exports = {
3939
},
4040
maxWidth: {
4141
'8xl': '88rem',
42+
'9xl': '92rem',
4243
},
4344
typography: (theme) => ({
4445
DEFAULT: {

0 commit comments

Comments
 (0)