File tree Expand file tree Collapse file tree 8 files changed +8
-14
lines changed
Expand file tree Collapse file tree 8 files changed +8
-14
lines changed Original file line number Diff line number Diff line change 127127 --card : hsl (0 0% 3.9% );
128128 --card-foreground : hsl (0 0% 98% );
129129 --popover : hsl (0 0% 3.9% );
130- --popover-foreground : 0 0% 98% ;
130+ --popover-foreground : hsl ( 0 0% 98% ) ;
131131 --primary : hsl (0 0% 98% );
132132 --primary-foreground : hsl (0 0% 9% );
133133 --secondary : hsl (0 0% 14.9% );
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ withDefaults(defineProps<Props>(), {
1717<template >
1818 <AppShell variant =" sidebar" >
1919 <AppSidebar />
20- <AppContent variant =" sidebar" >
20+ <AppContent variant =" sidebar" class = " overflow-x-hidden " >
2121 <AppSidebarHeader :breadcrumbs =" breadcrumbs" />
2222 <slot />
2323 </AppContent >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const breadcrumbs: BreadcrumbItem[] = [
1616 <Head title =" Dashboard" />
1717
1818 <AppLayout :breadcrumbs =" breadcrumbs" >
19- <div class =" flex h-full flex-1 flex-col gap-4 rounded-xl p-4" >
19+ <div class =" flex h-full flex-1 flex-col gap-4 rounded-xl p-4 overflow-x-auto " >
2020 <div class =" grid auto-rows-min gap-4 md:grid-cols-3" >
2121 <div class =" relative aspect-video overflow-hidden rounded-xl border border-sidebar-border/70 dark:border-sidebar-border" >
2222 <PlaceholderPattern />
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ interface Props {
1717
1818defineProps <Props >();
1919
20- const breadcrumbs : BreadcrumbItem [] = [
20+ const breadcrumbItems : BreadcrumbItem [] = [
2121 {
2222 title: ' Profile settings' ,
2323 href: ' /settings/profile' ,
@@ -40,7 +40,7 @@ const submit = () => {
4040 </script >
4141
4242<template >
43- <AppLayout :breadcrumbs =" breadcrumbs " >
43+ <AppLayout :breadcrumbs =" breadcrumbItems " >
4444 <Head title =" Profile settings" />
4545
4646 <SettingsLayout >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ createServer((page) =>
1111 createInertiaApp ( {
1212 page,
1313 render : renderToString ,
14- title : ( title ) => `${ title } - ${ appName } ` ,
14+ title : ( title ) => title ? `${ title } - ${ appName } ` : appName ,
1515 resolve : resolvePage ,
1616 setup : ( { App, props, plugin } ) =>
1717 createSSRApp ( { render : ( ) => h ( App , props ) } )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ declare module '@inertiajs/core' {
1717 interface PageProps extends InertiaPageProps , AppPageProps { }
1818}
1919
20- declare module '@ vue/runtime-core ' {
20+ declare module 'vue' {
2121 interface ComponentCustomProperties {
2222 $inertia : typeof Router ;
2323 $page : Page ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ declare global {
44 let route : typeof route ;
55}
66
7- declare module '@ vue/runtime-core ' {
7+ declare module 'vue' {
88 interface ComponentCustomProperties {
99 route : typeof route ;
1010 }
Original file line number Diff line number Diff line change 11import vue from '@vitejs/plugin-vue' ;
22import laravel from 'laravel-vite-plugin' ;
3- import path from 'path' ;
43import tailwindcss from '@tailwindcss/vite' ;
54import { defineConfig } from 'vite' ;
65
@@ -21,9 +20,4 @@ export default defineConfig({
2120 } ,
2221 } ) ,
2322 ] ,
24- resolve : {
25- alias : {
26- '@' : path . resolve ( __dirname , './resources/js' ) ,
27- } ,
28- } ,
2923} ) ;
You can’t perform that action at this time.
0 commit comments