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:
@@ -4,5 +4,5 @@
|
|||||||
src="{{ asset('images/usher-logo-long.png') }}"
|
src="{{ asset('images/usher-logo-long.png') }}"
|
||||||
alt="{{ $alt }}"
|
alt="{{ $alt }}"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
{{ $attributes->merge(['class' => 'h-10 w-auto']) }}
|
{{ $attributes }}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user