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.
This commit is contained in:
2025-11-28 00:51:51 +08:00
parent 21c82a5f18
commit bf6179c457

View File

@@ -4,5 +4,5 @@
src="{{ asset('images/usher-logo-long.png') }}"
alt="{{ $alt }}"
loading="lazy"
{{ $attributes->merge(['class' => 'h-10 w-auto']) }}
{{ $attributes }}
>