clean up table state and styles

This commit is contained in:
1ilit
2025-06-23 17:09:14 +04:00
parent 5a5304073e
commit 70e0b3e5f2
5 changed files with 143 additions and 183 deletions

View File

@@ -1,19 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
screens: {
'3xl': {'max': '2047px'},
'2xl': {'max': '1535px'},
'xl': {'min': '1024px'},
'lg': {'max': '1023px'},
'md': {'max': '820px'},
'sm': {'max': '639px'}
"3xl": { max: "2047px" },
"2xl": { max: "1535px" },
xl: { min: "1024px" },
lg: { max: "1023px" },
md: { max: "820px" },
sm: { max: "639px" },
},
extend: {}
extend: {},
},
plugins: [],
}
};