Skip to content

Commit

Permalink
chore: add custom spin-slow animation to config
Browse files Browse the repository at this point in the history
  • Loading branch information
yosevu committed Aug 12, 2024
1 parent 523d298 commit 2e204a7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./content-script/src/**/*.{js,ts,jsx,tsx}"
"./src/**/*.{js,ts,jsx,tsx}",
"./content-script/src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {},
extend: {
animation: {
'spin-slow': 'spin 20s linear infinite',
},
},
},
plugins: [],
}

0 comments on commit 2e204a7

Please sign in to comment.