19 lines
235 B
CSS
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;
|
|
}
|
|
}
|
|
}
|
|
|