Closed rjvim closed 4 months ago
5.1.3
Livewire
11.9
8.3
No response
In dropdown.blade.php we have following widths supported: https://github.com/laravel/jetstream/blob/5.x/stubs/livewire/resources/views/components/dropdown.blade.php#L11
$width = match ($width) { '48' => 'w-48', };
In navigation-menu.blade.php, we use:
https://github.com/laravel/jetstream/blob/5.x/stubs/livewire/resources/views/navigation-menu.blade.php#L25
<x-dropdown align="right" width="60">
I am guessing we need to '60' => 'w-60', to dropdown.
'60' => 'w-60',
laravel new new-app
https://github.com/beyondcode/herd-community/issues/883
@driesvints I think we need to tag a new release
Jetstream Version
5.1.3
Jetstream Stack
Livewire
Laravel Version
11.9
PHP Version
8.3
Database Driver & Version
No response
Description
In dropdown.blade.php we have following widths supported: https://github.com/laravel/jetstream/blob/5.x/stubs/livewire/resources/views/components/dropdown.blade.php#L11
In navigation-menu.blade.php, we use:
https://github.com/laravel/jetstream/blob/5.x/stubs/livewire/resources/views/navigation-menu.blade.php#L25
I am guessing we need to
'60' => 'w-60',
to dropdown.Steps To Reproduce
laravel new new-app