Skip to content

Commit cd969d2

Browse files
committed
fixes and formatting
1 parent 666d12f commit cd969d2

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

resources/css/app.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@custom-variant dark (&:where(.dark, .dark *));
1010

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

1414
--color-zinc-50: #fafafa;
1515
--color-zinc-100: #f5f5f5;
@@ -63,4 +63,4 @@ select:focus[data-flux-control] {
6363

6464
/* \[:where(&)\]:size-4 {
6565
@apply size-4;
66-
} */
66+
} */
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
<x-layouts.auth.card>
1+
<x-layouts.auth.simple>
22
{{ $slot }}
3-
</x-layouts.auth.card>
3+
</x-layouts.auth.simple>

resources/views/livewire/auth/forgot-password.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function sendPasswordResetLink(): void
3838
</form>
3939

4040
<div class="space-x-1 text-center text-sm text-zinc-400">
41-
Or, return to the
42-
<x-text-link href="{{ route('login') }}">login page</x-text-link>
41+
Or, return to
42+
<x-text-link href="{{ route('login') }}">log in</x-text-link>
4343
</div>
4444
</div>

resources/views/livewire/auth/verify-email.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ public function logout(Logout $logout): void
3535
}; ?>
3636

3737
<div class="mt-4 flex flex-col gap-6">
38-
<div class="text-sm text-gray-600">
38+
<div class="text-center text-sm text-gray-600">
3939
{{ __('Please verify your email address by clicking on the link we just emailed to you.') }}
4040
</div>
4141

4242
@if (session('status') == 'verification-link-sent')
43-
<div class="text-sm font-medium text-green-600">
43+
<div class="font-medium text-center text-sm text-green-600">
4444
{{ __('A new verification link has been sent to the email address you provided during registration.') }}
4545
</div>
4646
@endif

resources/views/partials/head.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<title>{{ $title ?? 'Laravel' }}</title>
55

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

99
@vite(['resources/css/app.css', 'resources/js/app.js'])
1010
@fluxAppearance

resources/views/welcome.blade.php

+3-3
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)