chore: removed dependency on tailwind forms

This commit is contained in:
Anoop M D 2024-03-19 06:34:54 +05:30
parent 410eecc884
commit 14911b4def

View File

@ -1,22 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
'./pages/**/*.{js,jsx}',
'./components/**/*.{js,jsx}',
'./app/**/*.{js,jsx}',
'./src/**/*.{js,jsx}',
],
prefix: "",
darkMode: ['class'],
content: ['./src/**/*.{js,jsx}'],
prefix: '',
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {},
extend: {}
},
plugins: [require("@tailwindcss/forms")],
}
plugins: []
};