🎨 Sort classes (#1750)

This commit is contained in:
Luke Vella 2025-06-03 09:24:33 +01:00 committed by GitHub
parent af7b0a82d1
commit dcc41eb0f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
120 changed files with 374 additions and 365 deletions

View file

@ -6,7 +6,7 @@ export function FullWidthLayoutHeader({
children,
}: { children: React.ReactNode }) {
return (
<header className="py-4 rounded-t-lg bg-background/90 backdrop-blur-sm sticky top-0 z-10 px-6 border-b">
<header className="sticky top-0 z-10 rounded-t-lg border-b bg-background/90 px-6 py-4 backdrop-blur-sm">
{children}
</header>
);
@ -25,7 +25,7 @@ export function FullWidthLayoutTitle({
return (
<div className="flex items-center gap-2">
{icon}
<h1 className="text-xl font-semibold">{children}</h1>
<h1 className="font-semibold text-xl">{children}</h1>
</div>
);
}