Skip to content

Commit 775d39e

Browse files
committed
run format
1 parent 097e273 commit 775d39e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

resources/css/app.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
body,
66
html {
7-
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
7+
--font-sans:
8+
'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
89
}
910

1011
@layer base {

resources/js/components/NavMain.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import { SidebarGroup, SidebarGroupLabel, SidebarMenu, SidebarMenuButton, SidebarMenuItem } from '@/components/ui/sidebar';
3-
import { type SharedData, type NavItem } from '@/types';
3+
import { type NavItem, type SharedData } from '@/types';
44
import { Link, usePage } from '@inertiajs/vue3';
55
66
defineProps<{

resources/js/pages/auth/Login.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ const submit = () => {
5555
<div class="grid gap-2">
5656
<div class="flex items-center justify-between">
5757
<Label for="password">Password</Label>
58-
<TextLink v-if="canResetPassword" :href="route('password.request')" class="text-sm" :tabindex="5"> Forgot password? </TextLink>
58+
<TextLink v-if="canResetPassword" :href="route('password.request')" class="text-sm" :tabindex="5">
59+
Forgot password?
60+
</TextLink>
5961
</div>
6062
<Input
6163
id="password"

0 commit comments

Comments
 (0)