Skip to content

Commit

Permalink
🐛 fix(postcss): module import error
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanized committed Dec 9, 2024
1 parent 517c7ba commit b6e83b5
Showing 1 changed file with 2 additions and 36 deletions.
38 changes: 2 additions & 36 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -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: [],
};

0 comments on commit b6e83b5

Please sign in to comment.