add edu-feed

This commit is contained in:
@s.roertgen 2024-08-20 21:19:55 +02:00
parent 570eed0f41
commit 960200d410
11 changed files with 3755 additions and 230 deletions

View file

@ -2,7 +2,18 @@
module.exports = {
content: ["./src/**/*.{html,js,cljs}"],
theme: {
extend: {},
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")],
}