Skip to content

Commit

Permalink
fixed modules
Browse files Browse the repository at this point in the history
  • Loading branch information
brennankapollock committed Dec 17, 2024
1 parent a69f7db commit 26071a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 14 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
"recharts": "^2.12.7",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"vaul": "^1.0.0",
"zod": "^3.23.8"
Expand All @@ -83,6 +82,7 @@
"globals": "^15.9.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.3",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.8"
Expand Down
20 changes: 7 additions & 13 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/** @type {import('tailwindcss').Config} */
import animate from 'tailwindcss-animate';

export default {
darkMode: ['class'],
content: [
Expand Down Expand Up @@ -58,20 +60,12 @@ export default {
},
keyframes: {
'accordion-down': {
from: {
height: '0',
},
to: {
height: 'var(--radix-accordion-content-height)',
},
from: { height: '0' },
to: { height: 'var(--radix-accordion-content-height)' },
},
'accordion-up': {
from: {
height: 'var(--radix-accordion-content-height)',
},
to: {
height: '0',
},
from: { height: 'var(--radix-accordion-content-height)' },
to: { height: '0' },
},
},
animation: {
Expand All @@ -80,5 +74,5 @@ export default {
},
},
},
plugins: [require('tailwindcss-animate')],
plugins: [animate],
};

0 comments on commit 26071a6

Please sign in to comment.