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 class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100">
|
||||||
<div>
|
<div>
|
||||||
<a href="/">
|
<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>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -117,7 +117,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<div style="display:flex;align-items:center;gap:12px;">
|
<div style="display:flex;align-items:center;gap:12px;">
|
||||||
<x-application-logo class="h-8 w-auto" alt="台灣尤塞氏症暨視聽弱協會" />
|
<x-application-logo class="h-auto w-32" alt="台灣尤塞氏症暨視聽弱協會" />
|
||||||
<div>
|
<div>
|
||||||
<div style="font-weight:700;font-size:16px;">台灣尤塞氏症暨視聽弱協會</div>
|
<div style="font-weight:700;font-size:16px;">台灣尤塞氏症暨視聽弱協會</div>
|
||||||
<div style="font-size:13px;color:var(--muted);">會員與財務管理系統</div>
|
<div style="font-size:13px;color:var(--muted);">會員與財務管理系統</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user