Skip to content

Commit ef441f1

Browse files
committed
Remove padding from bootstrap container to keep it flush with sides like Tailwind
1 parent 0a099c7 commit ef441f1

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
44

55
## [Unreleased]
66

7+
## [1.2.1] - 2021-04-22
8+
9+
### Changed
10+
11+
- Remove padding from bootstrap container to keep it flush with sides like Tailwind
12+
713
## [1.2.0] - 2021-04-22
814

915
### Added

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
wire:poll="{{ $refresh }}"
1111
@endif
1212
@endif
13-
class="container-fluid"
13+
class="container-fluid p-0"
1414
>
1515
@include('livewire-tables::bootstrap-4.includes.offline')
1616
@include('livewire-tables::bootstrap-4.includes.sorting-pills')

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
wire:poll="{{ $refresh }}"
1111
@endif
1212
@endif
13-
class="container-fluid"
13+
class="container-fluid p-0"
1414
>
1515
@include('livewire-tables::bootstrap-5.includes.offline')
1616
@include('livewire-tables::bootstrap-5.includes.sorting-pills')

0 commit comments

Comments
 (0)