Browser-addon/tailwind.config.cjs
2023-04-01 01:54:44 +02:00

12 lines
192 B
JavaScript

module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
animation: {
'spin-slow': 'spin 20s linear infinite',
}
},
},
plugins: [],
}