Skip to content

Commit 052221c

Browse files
committed
font
1 parent 2389273 commit 052221c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

resources/css/app.css

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

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

1212
--radius-lg: var(--radius);
1313
--radius-md: calc(var(--radius) - 2px);
@@ -155,4 +155,4 @@
155155
body {
156156
@apply bg-background text-foreground;
157157
}
158-
}
158+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function VerifyEmail({ status }: { status?: string }) {
2121
<Head title="Email verification" />
2222

2323
{status === 'verification-link-sent' && (
24-
<div className="mb-4 text-sm font-medium text-green-600">
24+
<div className="mb-4 text-center text-sm font-medium text-green-600">
2525
A new verification link has been sent to the email address you provided during registration.
2626
</div>
2727
)}

resources/views/app.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
<title inertia>{{ config('app.name', 'Laravel') }}</title>
88

9-
<link rel="preconnect" href="https://rsms.me/">
10-
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
9+
<link rel="preconnect" href="https://fonts.bunny.net">
10+
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
1111

1212
@routes
1313
@viteReactRefresh

0 commit comments

Comments
 (0)