Skip to content

Commit 3d92862

Browse files
committed
Adding latest UI updates
1 parent 42b1911 commit 3d92862

File tree

6 files changed

+24
-19
lines changed

6 files changed

+24
-19
lines changed

resources/css/app.css

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,22 @@
2020
--accent-foreground: 0 0% 9%;
2121
--destructive: 0 84.2% 60.2%;
2222
--destructive-foreground: 0 0% 98%;
23-
--border: 0 0% 89.8%;
23+
--border: 0 0% 92.8%;
2424
--input: 0 0% 89.8%;
25-
--ring: 240 5.9% 10%;
25+
--ring: 0 0% 3.9%;
26+
--chart-1: 12 76% 61%;
27+
--chart-2: 173 58% 39%;
28+
--chart-3: 197 37% 24%;
29+
--chart-4: 43 74% 66%;
30+
--chart-5: 27 87% 67%;
2631
--radius: 0.5rem;
2732
--sidebar-background: 0 0% 98%;
2833
--sidebar-foreground: 240 5.3% 26.1%;
29-
--sidebar-primary: 240 5.9% 10%;
34+
--sidebar-primary: 0 0% 10%;
3035
--sidebar-primary-foreground: 0 0% 98%;
31-
--sidebar-accent: 240 4.8% 95.9%;
32-
--sidebar-accent-foreground: 240 5.9% 30%;
33-
--sidebar-border: 220 13% 91%;
36+
--sidebar-accent: 0 0% 94%;
37+
--sidebar-accent-foreground: 0 0% 30%;
38+
--sidebar-border: 0 0% 91%;
3439
--sidebar-ring: 217.2 91.2% 59.8%;
3540
}
3641

@@ -54,13 +59,18 @@
5459
--border: 0 0% 14.9%;
5560
--input: 0 0% 14.9%;
5661
--ring: 0 0% 83.1%;
57-
--sidebar-background: 240 5.9% 10%;
58-
--sidebar-foreground: 240 4.8% 95.9%;
62+
--chart-1: 220 70% 50%;
63+
--chart-2: 160 60% 45%;
64+
--chart-3: 30 80% 55%;
65+
--chart-4: 280 65% 60%;
66+
--chart-5: 340 75% 55%;
67+
--sidebar-background: 0 0% 7%;
68+
--sidebar-foreground: 0 0% 95.9%;
5969
--sidebar-primary: 6, 72%, 55%;
6070
--sidebar-primary-foreground: 0 0% 100%;
61-
--sidebar-accent: 240 3.7% 15.9%;
71+
--sidebar-accent: 0 0% 15.9%;
6272
--sidebar-accent-foreground: 240 4.8% 95.9%;
63-
--sidebar-border: 240 3.7% 15.9%;
73+
--sidebar-border: 0 0% 15.9%;
6474
--sidebar-ring: 217.2 91.2% 59.8%;
6575
}
6676
}
@@ -73,4 +83,4 @@
7383
body {
7484
@apply bg-background text-foreground;
7585
}
76-
}
86+
}

resources/js/components/AppHeader.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ const props = withDefaults(defineProps<Props>(), {
1818
<div class="flex items-center gap-2">
1919
<SidebarTrigger class="-ml-1" />
2020
<template v-if="breadcrumbs.length > 0">
21-
<Separator orientation="vertical" class="mr-2 h-4" />
2221
<Breadcrumb>
2322
<BreadcrumbList>
2423
<template v-for="(item, index) in breadcrumbs" :key="index">

resources/js/components/InputError.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defineProps<{
66

77
<template>
88
<div v-show="message">
9-
<p class="text-sm text-red-600">
9+
<p class="text-sm text-red-600 dark:text-red-400">
1010
{{ message }}
1111
</p>
1212
</div>

resources/js/components/NavFooter.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ defineProps<Props>();
2222
<span>{{ item.title }}</span>
2323
</a>
2424
</SidebarMenuButton>
25-
<SidebarMenuAction show-on-hover>
26-
<ExternalLink class="text-neutral-600 dark:text-neutral-300" />
27-
</SidebarMenuAction>
2825
</SidebarMenuItem>
2926
</SidebarMenu>
3027
</SidebarGroupContent>

resources/js/types/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@ export interface User {
3131
email_verified_at: string | null;
3232
created_at: string;
3333
updated_at: string;
34-
[key: string]: any; // This allows for additional properties
3534
}

tailwind.config.js

Lines changed: 2 additions & 2 deletions
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: ['Inter var', ...defaultTheme.fontFamily.sans],
1616
},
1717
borderRadius: {
1818
lg: 'var(--radius)',
@@ -74,4 +74,4 @@ export default {
7474
},
7575
},
7676
plugins: [require('tailwindcss-animate')],
77-
};
77+
};

0 commit comments

Comments
 (0)