feat: added notification system with toasts
Some checks failed
Build and Push Docker Image / Explore-Gitea-Actions (push) Has been cancelled

This commit was merged in pull request #166.
This commit is contained in:
Tim
2024-09-11 15:04:40 +02:00
committed by Tim Wundenberg
parent d36a6d37f0
commit 5504c80a11
5 changed files with 62 additions and 3 deletions

View File

@@ -1,8 +1,20 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./template/**/*.templ"],
content: ["./template/**/*.templ", "./static/**/*.js"],
theme: {
extend: {},
extend: {
animation: {
fade: 'fadeOut 0.25s ease-in',
},
keyframes: _ => ({
fadeOut: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
}),
},
},
plugins: [
require('daisyui'),