mirror of
https://github.com/edufeed-org/edufeed-web.git
synced 2025-12-07 23:34:34 +00:00
20 lines
440 B
JavaScript
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")],
|
|
}
|
|
|