20 lines
330 B
JavaScript
20 lines
330 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
zIndex: {
|
|
60: "60",
|
|
70: "70",
|
|
80: "80",
|
|
90: "90",
|
|
100: "100",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|