Skip to content

Commit 45ee1c8

Browse files
committed
fixes
1 parent f7bc2ad commit 45ee1c8

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

resources/css/primevue/datatable.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,11 @@
287287
}
288288

289289
.p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
290-
@apply inset-shadow-[0_2px_0_0_theme(colors.primary)]
290+
@apply inset-shadow-[0_2px_0_0_var(--p-primary-color)]
291291
}
292292

293293
.p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
294-
@apply inset-shadow-[0_-2px_0_0_theme(colors.primary)]
294+
@apply inset-shadow-[0_-2px_0_0_var(--p-primary-color)]
295295
}
296296

297297
.p-datatable-loading-icon {

resources/js/ssr.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ import { route as routeFn } from 'ziggy-js';
1111
import PrimeVue from 'primevue/config';
1212
import ToastService from 'primevue/toastservice';
1313

14+
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue';
15+
import Container from '@/Components/Container.vue';
16+
1417
const appName = import.meta.env.VITE_APP_NAME || 'Laravel';
1518

1619
createServer((page) =>
@@ -40,7 +43,9 @@ createServer((page) =>
4043
})
4144
.use(ToastService)
4245
.component('Head', Head)
43-
.component('Link', Link);
46+
.component('Link', Link)
47+
.component('AuthenticatedLayout', AuthenticatedLayout)
48+
.component('Container', Container);
4449
},
4550
})
4651
);

0 commit comments

Comments
 (0)