CoolFace
Apppublic

modish10/timekeeper-wizard

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css15 linesDownload Raw Back to root
1/* Custom styles that can't be handled by Tailwind */2.modal-backdrop {3    background-color: rgba(0, 0, 0, 0.5);4    backdrop-filter: blur(4px);5}6 7/* Animation for modal */8@keyframes modalFadeIn {9    from { opacity: 0; transform: translateY(-20px); }10    to { opacity: 1; transform: translateY(0); }11}12 13.modal-content {14    animation: modalFadeIn 0.3s ease-out forwards;15}