fixed Color & Type View and Tables

This commit is contained in:
2025-04-22 17:48:38 +02:00
parent 07114a53c6
commit 6160ce6edd
8 changed files with 320 additions and 66 deletions
+4 -4
View File
@@ -1,17 +1,17 @@
<div class="border border-zinc-300 rounded-lg shadow">
<div class="border border-blackout-950 rounded-lg shadow">
<table class="w-full rounded-lg">
<thead class="bg-zinc-200 border-b border-zinc-300 rounded-t-lg">
<thead class="bg-black border-b border-blackout-950 rounded-t-lg">
<tr class="text-left">
{{ $tableheader }}
</tr>
</thead>
<tbody class="bg-zinc-100">
<tbody class="bg-black">
{{ $slot }}
</tbody>
</table>
@isset($pagination)
<div class="px-6 py-4 bg-zinc-100 rounded-b-lg">
<div class="px-6 py-4 bg-black rounded-b-lg">
{{ $pagination }}
</div>
@endisset