diff --git a/resources/css/table.css b/resources/css/table.css
index 518bb1bd..9c62e2a4 100644
--- a/resources/css/table.css
+++ b/resources/css/table.css
@@ -1,10 +1,10 @@
.custom-table {
width: 100%;
- & > thead > th {
+ & > thead > th, & > thead > tr > th {
@apply text-left px-6 text-gray-200 font-semibold py-3 border-gray-600 border-b;
}
- & > tr {
+ & > tr, & > tbody > tr {
@apply text-gray-200 transition-all duration-300 rounded hover:bg-gray-800;
& > td {
@apply py-1 px-6;
@@ -12,10 +12,10 @@
}
&.custom-table-sm {
- & > thead > th {
+ & > thead > th, & > thead > tr > th {
@apply px-3 py-2;
}
- & > tr {
+ & > tr, & > tbody > tr {
& > td {
@apply py-1 px-3;
}
@@ -32,11 +32,4 @@
}
}
}
-
-}
-.custom-table > * {
- display: table-row;
-}
-.custom-table > * > * {
- display: table-cell;
}
diff --git a/resources/js/components/ui/ActionButton.vue b/resources/js/components/ui/ActionButton.vue
index f36695d3..5e6e0b99 100644
--- a/resources/js/components/ui/ActionButton.vue
+++ b/resources/js/components/ui/ActionButton.vue
@@ -1,28 +1,14 @@
-