mirror of
https://github.com/usememos/memos.git
synced 2024-11-15 19:26:54 +08:00
26 lines
536 B
JavaScript
26 lines
536 B
JavaScript
/* eslint-disable no-undef */
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: ["class"],
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
prefix: "",
|
|
theme: {
|
|
extend: {
|
|
spacing: {
|
|
128: "32rem",
|
|
},
|
|
zIndex: {
|
|
1: "1",
|
|
2: "2",
|
|
20: "20",
|
|
100: "100",
|
|
1000: "1000",
|
|
2000: "2000",
|
|
},
|
|
gridTemplateRows: {
|
|
7: "repeat(7, minmax(0, 1fr))",
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tailwindcss-animate")],
|
|
};
|