Skip to content

Commit 79b9d4e

Browse files
committed
misc
1 parent 7779fef commit 79b9d4e

File tree

4 files changed

+7
-21
lines changed

4 files changed

+7
-21
lines changed

resources/js/Components/InputErrors.vue

Lines changed: 0 additions & 18 deletions
This file was deleted.

resources/js/Components/ToggleThemeButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function toggleTheme() {
1212
<template>
1313
<Button
1414
title="Change theme"
15-
:icon="currentTheme === 'light' ? 'pi pi-moon' : 'pi pi-sun'"
15+
:icon="currentTheme === 'light' ? 'pi pi-sun' : 'pi pi-moon'"
1616
@click="toggleTheme"
1717
/>
1818
</template>

resources/js/Layouts/GuestLayout.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup>
22
import ApplicationLogo from '@/Components/ApplicationLogo.vue';
33
import ResponsiveCard from '@/Components/ResponsiveCard.vue';
4+
import Toast from 'primevue/toast';
45
</script>
56

67
<template>
@@ -20,6 +21,7 @@ import ResponsiveCard from '@/Components/ResponsiveCard.vue';
2021
</div>
2122

2223
<div class="w-full sm:max-w-md mt-6">
24+
<Toast />
2325
<ResponsiveCard>
2426
<slot />
2527
</ResponsiveCard>

resources/js/Pages/Welcome.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ defineProps({
3333
<div class="text-6xl text-primary font-bold mb-4">
3434
& PrimeVue
3535
</div>
36-
<p class="mt-0 mb-6 text-muted-color leading-normal">
36+
<p class="mt-0 mb-1 text-muted-color leading-normal">
3737
A starter kit using the Vue/Inertia option for
3838
<a
3939
href="https://laravel.com/docs/master/starter-kits#laravel-breeze"
4040
class="underline text-primary hover:text-color"
4141
>Laravel Breeze</a
42-
>
42+
>,
43+
</p>
44+
<p class="mt-0 mb-6 text-muted-color leading-normal">
4345
utilizing
4446
<a
4547
href="https://primevue.org/"

0 commit comments

Comments
 (0)