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/input.css
Tim Wundenberg 2f94cdda0f
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 2m45s
fix(deps): remove daisyui classes
2025-02-03 22:14:56 +01:00

19 lines
235 B
CSS

@import 'tailwindcss';
@source './static/**/*.js';
@source './template/**/*.templ';
@theme {
--animate-fade: fadeOut 0.25s ease-in;
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
}