mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-23 06:12:28 +08:00
15 lines
360 B
JavaScript
15 lines
360 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/pages/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}"],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
zIndex: {
|
|
1: "1",
|
|
100: "100",
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography"), require("tailwind-scrollbar-hide")],
|
|
};
|