refactoring data table builder

This commit is contained in:
Geriano
2022-09-30 13:19:34 +07:00
parent 728c5e7012
commit 294f8a45ff
3 changed files with 64 additions and 68 deletions

View File

@@ -1,3 +1,15 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
table {
@apply border-collapse w-full;
}
thead, tfoot {
@apply bg-gray-200 dark:bg-gray-800 dark:text-gray-200;
}
thead tr, tfoot tr {
@apply bg-inherit text-inherit;
}