remove unneeded menu padding

This commit is contained in:
hackerESQ
2024-08-07 18:28:57 -05:00
parent 50359008e8
commit b090908d09
@@ -94,16 +94,15 @@ new class extends Component {
<x-dropdown title="{{ __('Choose time period') }}" label="{{ $scope }}" class="btn-ghost btn-sm">
<x-menu>
@foreach($options as $option)
@foreach($options as $option)
<x-menu-item
title="{{ $option['name'] }}"
x-on:click="$wire.changeScope('{{ $option['id'] }}')"
/>
@endforeach
<x-menu-item
title="{{ $option['name'] }}"
x-on:click="$wire.changeScope('{{ $option['id'] }}')"
/>
@endforeach
</x-menu>
</x-dropdown>
</div>
</div>