Skip to content

Commit 9357ce7

Browse files
committed
min-h-screen for components
1 parent 4229c8e commit 9357ce7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

resources/views/grid-view/grid-view.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- components.card
1212
- components.paginator --}}
1313

14-
<div>
14+
<div class="min-h-screen">
1515
{{-- Search input and filters --}}
1616
<div class="mb-2">
1717
@include('laravel-views::table-view.filters')
@@ -68,4 +68,4 @@
6868
</div>
6969

7070
@include('laravel-views::components.confirmation-message', ['message' => $confirmationMessage])
71-
</div>
71+
</div>

resources/views/list-view/list-view.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div>
1+
<div class="min-h-screen">
22
{{-- Search input and filters --}}
33
<div class="px-4">
44
@include('laravel-views::table-view.filters')
@@ -28,4 +28,4 @@
2828
</div>
2929

3030
@include('laravel-views::components.confirmation-message', ['message' => $confirmationMessage])
31-
</div>
31+
</div>

resources/views/table-view/table-view.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- components.table
1212
- components.paginator --}}
1313

14-
<div>
14+
<div class="min-h-screen">
1515
{{-- Search input and filters --}}
1616
<div class="py-4 px-3 pb-0">
1717
@include('laravel-views::table-view.filters')

0 commit comments

Comments
 (0)