mirror of
https://github.com/usememos/memos.git
synced 2025-02-15 10:50:47 +01:00
18 lines
296 B
JavaScript
18 lines
296 B
JavaScript
/* eslint-disable no-undef */
|
|
module.exports = {
|
|
content: ["./index.html", "./src/**/*.{js,ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
spacing: {
|
|
128: "32rem",
|
|
168: "42rem",
|
|
},
|
|
zIndex: {
|
|
100: "100",
|
|
1000: "1000",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|