Skip to content

Commit 7a36f68

Browse files
tnyleagithub-actions[bot]
authored andcommitted
fix code style
1 parent 6884e3f commit 7a36f68

File tree

10 files changed

+30
-30
lines changed

10 files changed

+30
-30
lines changed

resources/js/components/app-logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function AppLogo() {
77
<AppLogoIcon className="size-5 fill-current text-white dark:text-black" />
88
</div>
99
<div className="grid flex-1 text-left text-sm leading-tight">
10-
<span className="mb-0.5 truncate font-semibold leading-none">Laravel</span>
10+
<span className="mb-0.5 truncate leading-none font-semibold">Laravel</span>
1111
<span className="truncate text-[11px] leading-none tracking-tight opacity-80">Starter Kit</span>
1212
</div>
1313
</>

resources/js/components/app-sidebar-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { type BreadcrumbItem as BreadcrumbItemType } from '@/types';
44

55
export function AppSidebarHeader({ breadcrumbs = [] }: { breadcrumbs?: BreadcrumbItemType[] }) {
66
return (
7-
<header className="border-sidebar-border/50 group-has-data-[collapsible=icon]/sidebar-wrapper:h-12 flex h-16 shrink-0 items-center gap-2 border-b px-4 transition-[width,height] ease-linear">
7+
<header className="border-sidebar-border/50 flex h-16 shrink-0 items-center gap-2 border-b px-4 transition-[width,height] ease-linear group-has-data-[collapsible=icon]/sidebar-wrapper:h-12">
88
<div className="flex items-center gap-2">
99
<SidebarTrigger className="-ml-1" />
1010
<Breadcrumbs breadcrumbs={breadcrumbs} />

resources/js/components/appearance-tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function AppearanceToggleTab({ className = '', ...props }: HTMLAt
2121
className={cn(
2222
'flex items-center rounded-md px-3.5 py-1.5 transition-colors',
2323
appearance === value
24-
? 'shadow-xs bg-white dark:bg-neutral-700 dark:text-neutral-100'
24+
? 'bg-white shadow-xs dark:bg-neutral-700 dark:text-neutral-100'
2525
: 'text-neutral-500 hover:bg-neutral-200/60 hover:text-black dark:text-neutral-400 dark:hover:bg-neutral-700/60',
2626
)}
2727
>

resources/js/components/delete-user.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default function DeleteUser() {
8080
</DialogContent>
8181
</Dialog>
8282
<div className="relative ml-3 text-red-600 dark:text-red-100">
83-
<p className="mb-1 text-sm font-medium leading-none">Warning</p>
83+
<p className="mb-1 text-sm leading-none font-medium">Warning</p>
8484
<p className="text-xs leading-none">Please proceed with caution, this cannot be undone</p>
8585
</div>
8686
</div>

resources/js/layouts/auth/auth-card-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function AuthCardLayout({
2222

2323
<div className="flex flex-col gap-6">
2424
<Card className="rounded-xl">
25-
<CardHeader className="px-10 pb-0 pt-8 text-center">
25+
<CardHeader className="px-10 pt-8 pb-0 text-center">
2626
<CardTitle className="text-xl">{title}</CardTitle>
2727
<CardDescription>{description}</CardDescription>
2828
</CardHeader>

resources/js/layouts/auth/auth-split-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default function AuthSplitLayout({ children, title, description }: AuthLa
3535
</Link>
3636
<div className="flex flex-col items-start gap-2 text-left sm:items-center sm:text-center">
3737
<h1 className="text-2xl font-bold">{title}</h1>
38-
<p className="text-muted-foreground text-balance text-sm">{description}</p>
38+
<p className="text-muted-foreground text-sm text-balance">{description}</p>
3939
</div>
4040
{children}
4141
</div>

resources/js/layouts/settings/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ export default function SettingsLayout({ children }: { children: React.ReactNode
3030
<div className="px-4 py-6">
3131
<Heading title="Settings" description="Manage your profile and account settings" />
3232

33-
<div className="flex flex-col space-y-8 md:flex-row md:space-x-12 md:space-y-0">
33+
<div className="flex flex-col space-y-8 md:flex-row md:space-y-0 md:space-x-12">
3434
<aside className="w-full md:w-1/3 lg:w-1/4 xl:w-1/5">
35-
<nav className="flex flex-col space-x-0 space-y-1">
35+
<nav className="flex flex-col space-y-1 space-x-0">
3636
{sidebarNavItems.map((item) => (
3737
<Button
3838
key={item.url}

resources/js/pages/auth/verify-email.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default function VerifyEmail({ status }: { status?: string }) {
3939
href={route('logout')}
4040
method="post"
4141
as="button"
42-
className="focus:outline-hidden rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2"
42+
className="rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 focus:outline-hidden"
4343
>
4444
Log Out
4545
</Link>

resources/js/pages/settings/profile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default function Profile({ mustVerifyEmail, status }: { mustVerifyEmail:
8181
href={route('verification.send')}
8282
method="post"
8383
as="button"
84-
className="focus:outline-hidden rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2"
84+
className="rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 focus:outline-hidden"
8585
>
8686
Click here to re-send the verification email.
8787
</Link>

0 commit comments

Comments
 (0)