Skip to content

Commit 9174c44

Browse files
committedFeb 24, 2025
formatting
1 parent 3a6dbc4 commit 9174c44

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎resources/js/components/AppSidebar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const footerNavItems: NavItem[] = [
3030
</script>
3131

3232
<template>
33-
<Sidebar collapsible="icon" variant="sidebar">
33+
<Sidebar collapsible="icon" variant="inset">
3434
<SidebarHeader>
3535
<SidebarMenu>
3636
<SidebarMenuItem>

‎resources/js/pages/auth/VerifyEmail.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ const submit = () => {
2020
<AuthLayout title="Verify email" description="Please verify your email address by clicking on the link we just emailed to you.">
2121
<Head title="Email verification" />
2222

23-
<div class="mb-4 text-sm text-gray-600">
23+
<div class="mb-4 text-center text-sm text-gray-600">
2424
Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you
2525
didn't receive the email, we will gladly send you another
2626
</div>
2727

28-
<div v-if="status === 'verification-link-sent'" class="mb-4 text-sm font-medium text-green-600">
28+
<div v-if="status === 'verification-link-sent'" class="mb-4 text-center text-sm font-medium text-green-600">
2929
A new verification link has been sent to the email address you provided during registration
3030
</div>
3131

‎resources/views/app.blade.php

+2-2
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
@vite(['resources/js/app.ts'])

‎tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default {
1212
theme: {
1313
extend: {
1414
fontFamily: {
15-
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
15+
sans: ['Instrument Sans', ...defaultTheme.fontFamily.sans],
1616
},
1717
borderRadius: {
1818
lg: 'var(--radius)',

0 commit comments

Comments
 (0)
Please sign in to comment.