diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index d2b0cd08..18cb32c1 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -2,22 +2,7 @@ module.exports = {
plugins: [require('daisyui')],
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
- extend: {
- keyframes: {
- fadeIn: {
- '0%': { opacity: '0' },
- '100%': { opacity: '1' }
- },
- fadeOut: {
- '0%': { opacity: '1' },
- '100%': { opacity: '0' }
- }
- },
- animation: {
- fadeIn: 'fadeIn 1s ease-in',
- fadeOut: 'fadeOut 1s ease-in'
- }
- }
+ extend: {}
},
variants: {
extend: {}