This repository has been archived on 2025-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/tailwind.config.js
Tim 5504c80a11
Some checks failed
Build and Push Docker Image / Explore-Gitea-Actions (push) Has been cancelled
feat: added notification system with toasts
2024-09-11 15:05:26 +02:00

27 lines
399 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' },
},
}),
},
},
plugins: [
require('daisyui'),
],
daisyui: {
themes: ["retro"],
},
}