memos/web/tailwind.config.js

17 lines
274 B
JavaScript
Raw Normal View History

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