Skip to content

Commit 84be56f

Browse files
committed
run npm format
1 parent 63417fc commit 84be56f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

resources/css/app.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
@custom-variant dark (&:is(.dark *));
88

99
@theme {
10-
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
10+
--font-sans:
11+
'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
1112

1213
--radius-lg: var(--radius);
1314
--radius-md: calc(var(--radius) - 2px);
@@ -66,7 +67,6 @@
6667
color utility to any element that depends on these defaults.
6768
*/
6869
@layer base {
69-
7070
*,
7171
::after,
7272
::before,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ 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-9 w-9 mb-1 items-center justify-center rounded-md">
18+
<div className="mb-1 flex h-9 w-9 items-center justify-center rounded-md">
1919
<AppLogoIcon className="size-9 fill-current text-[var(--foreground)] dark:text-white" />
2020
</div>
2121
<span className="sr-only">{title}</span>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function AuthSplitLayout({ children, title, description }: AuthLa
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">
1919
<AppLogoIcon className="mr-2 size-8 fill-current text-white" />
20-
{ name }
20+
{name}
2121
</Link>
2222
{quote && (
2323
<div className="relative z-20 mt-auto">

resources/js/pages/welcome.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function Welcome() {
77
return (
88
<>
99
<Head title="Welcome">
10-
<link rel="preconnect" href="https://fonts.bunny.net">
10+
<link rel="preconnect" href="https://fonts.bunny.net" />
1111
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
1212
</Head>
1313
<div className="flex min-h-screen flex-col items-center bg-[#FDFDFC] p-6 text-[#1b1b18] lg:justify-center lg:p-8 dark:bg-[#0a0a0a]">

0 commit comments

Comments
 (0)