Skip to content

Commit b5d4871

Browse files
committed
Fix spacing
1 parent 9fd592c commit b5d4871

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

resources/views/bootstrap-4/datatable.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class="container-fluid p-0"
2323
@include('livewire-tables::bootstrap-4.includes.search')
2424

2525
@if ($filtersEnabled && $showFilterDropdown)
26-
<div class="{{ $showSearch ? 'ml-0 ml-md-3' : '' }} mb-3 mb-md-0">
26+
<div class="{{ $showSearch ? 'ml-0 ml-md-2' : '' }} mb-3 mb-md-0">
2727
@include('livewire-tables::bootstrap-4.includes.filters')
2828
</div>
2929
@endif

resources/views/bootstrap-4/includes/column-select.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
x-data="{ open: false }"
55
x-on:keydown.escape.stop="open = false"
66
x-on:mousedown.away="open = false"
7-
class="dropdown mb-3 mb-md-0 pl-0 pl-md-3 d-block d-md-inline"
7+
class="dropdown mb-3 mb-md-0 pl-0 pl-md-2 d-block d-md-inline"
88
>
99
<button
1010
x-on:click="open = !open"

resources/views/bootstrap-4/includes/per-page.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if ($paginationEnabled && $showPerPage)
2-
<div class="ml-0 ml-md-3">
2+
<div class="ml-0 ml-md-2">
33
<select
44
wire:model="perPage"
55
id="perPage"

resources/views/bootstrap-4/includes/reorder.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if ($reorderEnabled)
2-
<div class="mr-0 mr-md-3 mb-3 mb-md-0">
2+
<div class="mr-0 mr-md-2 mb-3 mb-md-0">
33
<button
44
wire:click="{{ $reordering ? 'disableReordering' : 'enableReordering' }}"
55
type="button"

resources/views/bootstrap-5/datatable.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class="container-fluid p-0"
2323
@include('livewire-tables::bootstrap-5.includes.search')
2424

2525
@if ($filtersEnabled && $showFilterDropdown)
26-
<div class="{{ $showSearch ? 'ms-0 ms-md-3' : '' }} mb-3 mb-md-0">
26+
<div class="{{ $showSearch ? 'ms-0 ms-md-2' : '' }} mb-3 mb-md-0">
2727
@include('livewire-tables::bootstrap-5.includes.filters')
2828
</div>
2929
@endif

resources/views/bootstrap-5/includes/column-select.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
x-data="{ open: false }"
55
x-on:keydown.escape.stop="open = false"
66
x-on:mousedown.away="open = false"
7-
class="dropdown mb-3 mb-md-0 md-0 ms-md-3 d-block d-md-inline"
7+
class="dropdown mb-3 mb-md-0 md-0 ms-md-2 d-block d-md-inline"
88
>
99
<button
1010
x-on:click="open = !open"

resources/views/bootstrap-5/includes/per-page.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if ($paginationEnabled && $showPerPage)
2-
<div class="ms-0 ms-md-3">
2+
<div class="ms-0 ms-md-2">
33
<select
44
wire:model="perPage"
55
id="perPage"

resources/views/bootstrap-5/includes/reorder.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if ($reorderEnabled)
2-
<div class="me-0 me-md-3 mb-3 mb-md-0">
2+
<div class="me-0 me-md-2 mb-3 mb-md-0">
33
<button
44
wire:click="{{ $reordering ? 'disableReordering' : 'enableReordering' }}"
55
type="button"

0 commit comments

Comments
 (0)