Skip to content

Commit 688777b

Browse files
committed
Remove excess padding
1 parent 0242a4e commit 688777b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/bootstrap-5/includes/filter-type-multiselect.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="form-check">
1+
<div class="form-check p-0">
22
<input
33
onclick="event.stopPropagation();"
44
type="checkbox"
@@ -9,7 +9,7 @@
99
<label class="form-check-label" for="filter-{{$key}}-select-all">@lang('All')</label>
1010
</div>
1111
@foreach($filter->options() as $optionKey => $value)
12-
<div class="form-check" wire:key="filter-{{ $key }}-multiselect-{{ $optionKey }}">
12+
<div class="form-check p-0" wire:key="filter-{{ $key }}-multiselect-{{ $optionKey }}">
1313
<input
1414
onclick="event.stopPropagation();"
1515
type="checkbox"

0 commit comments

Comments
 (0)