memos/web/tailwind.config.js

27 lines
536 B
JavaScript
Raw Normal View History

/* eslint-disable no-undef */
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
2024-10-26 21:36:05 +08:00
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
prefix: "",
theme: {
extend: {
spacing: {
128: "32rem",
},
zIndex: {
2022-07-05 22:48:21 +08:00
1: "1",
2: "2",
2022-07-09 23:58:04 +08:00
20: "20",
100: "100",
1000: "1000",
2024-05-08 22:31:22 +08:00
2000: "2000",
},
2022-07-05 22:54:22 +08:00
gridTemplateRows: {
7: "repeat(7, minmax(0, 1fr))",
},
},
},
plugins: [require("tailwindcss-animate")],
};