21 lines
469 B
JavaScript
21 lines
469 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/app/**/*.{js,ts,jsx,tsx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
animation: {
|
|
'pulse-slow': 'pulse 3s infinite',
|
|
},
|
|
keyframes: {
|
|
pulse: {
|
|
'0%, 100%': { opacity: 0.6, transform: 'scale(1)' },
|
|
'50%': { opacity: 0.3, transform: 'scale(1.05)' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|