Skip to content

Commit 2e204a7

Browse files
committed
chore: add custom spin-slow animation to config
1 parent 523d298 commit 2e204a7

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

tailwind.config.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
module.exports = {
22
content: [
33
"./index.html",
4-
"./src/**/*.{js,ts,jsx,tsx}",
5-
"./content-script/src/**/*.{js,ts,jsx,tsx}"
4+
"./src/**/*.{js,ts,jsx,tsx}",
5+
"./content-script/src/**/*.{js,ts,jsx,tsx}"
66
],
77
theme: {
8-
extend: {},
8+
extend: {
9+
animation: {
10+
'spin-slow': 'spin 20s linear infinite',
11+
},
12+
},
913
},
1014
plugins: [],
1115
}

0 commit comments

Comments
 (0)