chatwoot-develop/app/javascript/captain_booking/assets/main.css
2026-01-12 19:04:15 -03:00

15 lines
278 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.animate-fade-in {
animation: fadeIn 0.5s ease-out;
}
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}