Skip to content

Commit

Permalink
chore: removed dependency on tailwind forms
Browse files Browse the repository at this point in the history
  • Loading branch information
helloanoop committed Mar 19, 2024
1 parent 410eecc commit 14911b4
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions packages/bruno-app/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -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: []
};

0 comments on commit 14911b4

Please sign in to comment.