Skip to content

Commit

Permalink
Merge pull request #225 from rappasoft/develop
Browse files Browse the repository at this point in the history
Remove padding from bootstrap container to keep it flush with sides like Tailwind
  • Loading branch information
rappasoft authored Apr 23, 2021
2 parents b8f3fca + ef441f1 commit 5411c1d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to `laravel-livewire-tables` will be documented in this file

## [Unreleased]

## [1.2.1] - 2021-04-22

### Changed

- Remove padding from bootstrap container to keep it flush with sides like Tailwind

## [1.2.0] - 2021-04-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion resources/views/bootstrap-4/datatable.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
wire:poll="{{ $refresh }}"
@endif
@endif
class="container-fluid"
class="container-fluid p-0"
>
@include('livewire-tables::bootstrap-4.includes.offline')
@include('livewire-tables::bootstrap-4.includes.sorting-pills')
Expand Down
2 changes: 1 addition & 1 deletion resources/views/bootstrap-5/datatable.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
wire:poll="{{ $refresh }}"
@endif
@endif
class="container-fluid"
class="container-fluid p-0"
>
@include('livewire-tables::bootstrap-5.includes.offline')
@include('livewire-tables::bootstrap-5.includes.sorting-pills')
Expand Down

0 comments on commit 5411c1d

Please sign in to comment.