memos/web/tailwind.config.js
2022-03-11 04:54:11 +08:00

17 lines
274 B
JavaScript

/* eslint-disable no-undef */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,tsx}"],
theme: {
extend: {
spacing: {
128: "32rem",
},
zIndex: {
100: "100",
1000: "1000",
},
},
},
plugins: [],
};