finished the upgrade to filament 4. completely revamped the frontend with codex, now it looks great!

This commit is contained in:
2025-11-13 17:42:43 +01:00
parent f59fda588b
commit b311188bc1
138 changed files with 5440 additions and 4105 deletions

View File

@@ -25,7 +25,7 @@ defineProps({
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6">
<div class="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
<div class="p-4 sm:p-8 bg-white shadow-sm sm:rounded-lg">
<UpdateProfileInformationForm
:must-verify-email="mustVerifyEmail"
:status="status"
@@ -33,11 +33,11 @@ defineProps({
/>
</div>
<div class="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
<div class="p-4 sm:p-8 bg-white shadow-sm sm:rounded-lg">
<UpdatePasswordForm class="max-w-xl" />
</div>
<div class="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
<div class="p-4 sm:p-8 bg-white shadow-sm sm:rounded-lg">
<DeleteUserForm class="max-w-xl" />
</div>
</div>

View File

@@ -71,7 +71,7 @@ const form = useForm({
:href="route('verification.send')"
method="post"
as="button"
class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"
class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-hidden focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"
>
Click here to re-send the verification email.
</Link>