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