Files
usher-manage-stack/resources/views/components/application-logo.blade.php
Gbanyan bf6179c457 Remove default sizing from ApplicationLogo component
- Removed 'h-10 w-auto' from resources/views/components/application-logo.blade.php.
- This resolves CSS conflicts where default classes were persisting alongside custom width/height classes (e.g., 'h-10 w-auto h-auto w-32').
- All logo instances now fully respect the classes passed to them.
2025-11-28 00:51:51 +08:00

9 lines
180 B
PHP

@props(['alt' => '台灣尤塞氏症暨視聽弱協會'])
<img
src="{{ asset('images/usher-logo-long.png') }}"
alt="{{ $alt }}"
loading="lazy"
{{ $attributes }}
>