All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 2m59s
21 lines
323 B
JavaScript
21 lines
323 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./template/**/*.templ", "./static/**/*.js"],
|
|
theme: {
|
|
extend: {
|
|
|
|
animation: {
|
|
fade: 'fadeOut 0.25s ease-in',
|
|
},
|
|
|
|
keyframes: _ => ({
|
|
fadeOut: {
|
|
'0%': { opacity: '1' },
|
|
'100%': { opacity: '0' },
|
|
},
|
|
}),
|
|
},
|
|
}
|
|
}
|
|
|