Skip to content

Commit

Permalink
chore: add tailwind config
Browse files Browse the repository at this point in the history
  • Loading branch information
ayusshrathore committed Jun 5, 2023
1 parent 293b602 commit 8ba2f58
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};

0 comments on commit 8ba2f58

Please sign in to comment.