diff --git a/app/View/Ui/Table.php b/app/View/Ui/Table.php
new file mode 100644
index 00000000..baf8f18e
--- /dev/null
+++ b/app/View/Ui/Table.php
@@ -0,0 +1,31 @@
+
+
+
+ HTML;
+ }
+}
diff --git a/package-lock.json b/package-lock.json
index e82d2d7a..0b657571 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -11,6 +11,7 @@
"@editorjs/paragraph": "^2.11.3",
"@inertiajs/vue3": "^1.0.14",
"@ryangjchandler/alpine-tooltip": "^2.0.1",
+ "@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@vitejs/plugin-vue": "^4.6.2",
@@ -998,6 +999,14 @@
"tippy.js": "^6.3.1"
}
},
+ "node_modules/@tailwindcss/container-queries": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/container-queries/-/container-queries-0.1.1.tgz",
+ "integrity": "sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==",
+ "peerDependencies": {
+ "tailwindcss": ">=3.2.0"
+ }
+ },
"node_modules/@tailwindcss/forms": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.7.tgz",
diff --git a/package.json b/package.json
index ef318bb1..5a6b244a 100644
--- a/package.json
+++ b/package.json
@@ -30,6 +30,7 @@
"@editorjs/paragraph": "^2.11.3",
"@inertiajs/vue3": "^1.0.14",
"@ryangjchandler/alpine-tooltip": "^2.0.1",
+ "@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@vitejs/plugin-vue": "^4.6.2",
diff --git a/resources/css/app.css b/resources/css/app.css
index f7ca8c23..3c9b4825 100644
--- a/resources/css/app.css
+++ b/resources/css/app.css
@@ -5,6 +5,5 @@
@import 'base.css';
@import 'layout';
@import 'buttons';
-@import 'table';
@import 'bool';
@import 'editor';
diff --git a/resources/css/table.css b/resources/css/table.css
deleted file mode 100644
index 518bb1bd..00000000
--- a/resources/css/table.css
+++ /dev/null
@@ -1,42 +0,0 @@
-.custom-table {
- width: 100%;
- & > thead > th {
- @apply text-left px-6 text-gray-200 font-semibold py-3 border-gray-600 border-b;
- }
-
- & > tr {
- @apply text-gray-200 transition-all duration-300 rounded hover:bg-gray-800;
- & > td {
- @apply py-1 px-6;
- }
- }
-
- &.custom-table-sm {
- & > thead > th {
- @apply px-3 py-2;
- }
- & > tr {
- & > td {
- @apply py-1 px-3;
- }
- }
- }
-
- &.custom-table-light {
- & > thead > th {
- @apply border-gray-500;
- }
- & > td {
- &:hover {
- @apply bg-gray-700;
- }
- }
- }
-
-}
-.custom-table > * {
- display: table-row;
-}
-.custom-table > * > * {
- display: table-cell;
-}
diff --git a/tailwind.config.js b/tailwind.config.js
index 4ab5adc1..2a2fae05 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -29,5 +29,5 @@ module.exports = {
},
},
- plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
+ plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms'), require('@tailwindcss/container-queries')],
};