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