Spaces:
Build error
Build error
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| content: [ | |
| './pages/**/*.{js,jsx,ts,tsx}', | |
| './components/**/*.{js,jsx,ts,tsx}', | |
| ], | |
| theme: { | |
| extend: { | |
| animation: { | |
| 'float': 'float 6s ease-in-out infinite', | |
| 'glow': 'glow 2s ease-in-out infinite', | |
| 'gradient': 'gradient 8s linear infinite', | |
| }, | |
| keyframes: { | |
| float: { | |
| '0%, 100%': { transform: 'translateY(0px)' }, | |
| '50%': { transform: 'translateY(-20px)' }, | |
| }, | |
| glow: { | |
| '0%, 100%': { opacity: '1' }, | |
| '50%': { opacity: '0.5' }, | |
| }, | |
| gradient: { | |
| '0%': { backgroundPosition: '0% 50%' }, | |
| '50%': { backgroundPosition: '100% 50%' }, | |
| '100%': { backgroundPosition: '0% 50%' }, | |
| }, | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| } |