Strictly limit logo width on homepage and guest pages

- Updated welcome.blade.php (homepage) to use 'w-32 h-auto' (128px width).
- Updated guest.blade.php (login/register) to use 'w-48 h-auto' (192px width).
- This addresses the user's feedback that the logo width was not constrained, causing it to appear too large.
This commit is contained in:
2025-11-28 00:49:29 +08:00
parent 6860a98f61
commit 21c82a5f18
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100">
<div>
<a href="/">
<x-application-logo class="w-auto h-12 fill-current text-gray-500" />
<x-application-logo class="h-auto w-48 fill-current text-gray-500" />
</a>
</div>