Skip to content

Commit 9247442

Browse files
committed
Add tailwind config
1 parent 01d55f7 commit 9247442

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/** @type {import('tailwindcss').Config} */
2+
module.exports = {
3+
content: [
4+
"./src/**/*.{js,jsx,ts,tsx}",
5+
],
6+
theme: {
7+
extend: {
8+
backgroundImage: theme => ({
9+
'gradient-radial': 'radial-gradient(ellipse at center, var(--tw-gradient-stops))',
10+
'gradient-conic': 'conic-gradient(var(--tw-gradient-stops))',
11+
}),
12+
}
13+
},
14+
plugins: [],
15+
}

0 commit comments

Comments
 (0)