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:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user