This commit is contained in:
lgp
2025-11-06 16:39:18 +08:00
commit 3f4186e19d
186 changed files with 43990 additions and 0 deletions

33
tailwind.config.js Normal file
View File

@@ -0,0 +1,33 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.tsx'],
theme: {
extend: {
padding: {
1.5: "0.375rem",
2.5: "0.625rem",
3.5: "0.875rem",
4.5: "1.125rem",
5.5: "1.375rem",
6.5: "1.625rem",
},
margin: {
2.5: "0.625rem",
3.5: "0.875rem",
4.5: "1.125rem",
5.5: "1.375rem",
6.5: "1.625rem",
},
width: {
10.5: "2.625rem",
},
height: {
10.5: "2.625rem",
},
},
},
plugins: [],
corePlugins: {
preflight: false,
},
};