Files
openim-admin/tailwind.config.js
2025-11-06 16:39:18 +08:00

34 lines
620 B
JavaScript

/** @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,
},
};