diff --git a/tailwind.config.js b/tailwind.config.js index 90ab4c4..2cc7b3d 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,41 +1,7 @@ -/** @type {import('tailwindcss').Config} */ export default { - content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], + content: ["./src/**/*.{html,js,jsx,ts,tsx}"], // Adjust paths to your project structure theme: { - extend: {}, - }, - plugins: [], -}; - -module.exports = { - theme: { - extend: { - animation: { - 'fade-in-up': 'fadeInUp 0.5s ease-out', - 'fade-in-down': 'fadeInDown 0.5s ease-out', - 'fade-out-up': 'fadeOutUp 0.5s ease-in', - 'spin': 'spin 0.5s linear', - 'spin-reverse': 'spinReverse 0.5s linear', - }, - keyframes: { - fadeInUp: { - '0%': { opacity: 0, transform: 'translateY(20px)' }, - '100%': { opacity: 1, transform: 'translateY(0)' }, - }, - fadeInDown: { - '0%': { opacity: 0, transform: 'translateY(-20px)' }, - '100%': { opacity: 1, transform: 'translateY(0)' }, - }, - fadeOutUp: { - '0%': { opacity: 1, transform: 'translateY(0)' }, - '100%': { opacity: 0, transform: 'translateY(-20px)' }, - }, - spinReverse: { - '0%': { transform: 'rotate(0deg)' }, - '100%': { transform: 'rotate(-360deg)' }, - }, - }, - }, + extend: {}, }, plugins: [], };