Skip to content

Commit dc0a61f

Browse files
committed
adding a few small updatesg
1 parent 438c824 commit dc0a61f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

resources/js/components/app-logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default function AppLogo() {
44
return (
55
<>
66
<div className="bg-sidebar-primary text-sidebar-primary-foreground flex aspect-square size-8 items-center justify-center rounded-md">
7-
<AppLogoIcon className="size-[1.375rem] fill-current text-white dark:text-black" />
7+
<AppLogoIcon className="size-5 fill-current text-white dark:text-black" />
88
</div>
99
<div className="ml-1 grid flex-1 text-left text-sm">
1010
<span className="mb-0.5 truncate leading-none font-semibold">Laravel Starter Kit</span>

resources/js/layouts/app-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import AppLayoutTemplate from '@/layouts/app/app-sidebar-layout';
1+
import AppLayoutTemplate from '@/layouts/app/app-header-layout';
22
import { type BreadcrumbItem } from '@/types';
33

44
interface AppLayoutProps {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export default function AuthCardLayout({
1515
<div className="bg-muted flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
1616
<div className="flex w-full max-w-md flex-col gap-6">
1717
<a href="#" className="flex items-center gap-2 self-center font-medium">
18-
<div className="flex h-10 w-10 items-center justify-center">
19-
<AppLogoIcon className="size-10 fill-current text-black" />
18+
<div className="flex h-9 w-9 items-center justify-center">
19+
<AppLogoIcon className="size-9 fill-current text-black" />
2020
</div>
2121
</a>
2222

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export default function AuthSimpleLayout({ children, title, description }: AuthL
1515
<div className="flex flex-col gap-8">
1616
<div className="flex flex-col items-center gap-4">
1717
<Link href={route('home')} className="flex flex-col items-center gap-2 font-medium">
18-
<div className="flex h-10 w-10 items-center justify-center rounded-md">
19-
<AppLogoIcon className="size-10 fill-current text-[var(--foreground)] dark:text-white" />
18+
<div className="flex h-9 w-9 items-center justify-center rounded-md">
19+
<AppLogoIcon className="size-9 fill-current text-[var(--foreground)] dark:text-white" />
2020
</div>
2121
<span className="sr-only">{title}</span>
2222
</Link>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function AuthSplitLayout({ children, title, description }: AuthLa
1616
<div className="bg-muted relative hidden h-full flex-col p-10 text-white lg:flex dark:border-r">
1717
<div className="absolute inset-0 bg-zinc-900" />
1818
<Link href={route('home')} className="relative z-20 flex items-center text-lg font-medium">
19-
<AppLogoIcon className="mr-2 size-10 fill-current text-white" />
19+
<AppLogoIcon className="mr-2 size-9 fill-current text-white" />
2020
</Link>
2121
{quote && (
2222
<div className="relative z-20 mt-auto">

0 commit comments

Comments
 (0)