edufeed-web/tailwind.config.js
2024-08-20 21:19:55 +02:00

20 lines
440 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,cljs}"],
theme: {
extend: {
keyframes: {
flyIn: {
'0%': { transform: 'translateX(-100%)', opacity: '0' },
'100%': { transform: 'translateX(0)', opacity: '1' },
},
},
animation: {
flyIn: 'flyIn 0.5s ease-out forwards',
},
},
},
plugins: [require("daisyui")],
}