CoolFace
Apppublic

ebd476/bpmn-task-assigner-wizard

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css38 linesDownload Raw Back to root
1/* Custom animations for modal */2@keyframes fadeIn {3    from { opacity: 0; }4    to { opacity: 1; }5}6 7@keyframes slideIn {8    from { transform: translateY(20px); opacity: 0; }9    to { transform: translateY(0); opacity: 1; }10}11 12/* Modal animation classes */13.modal-overlay {14    animation: fadeIn 0.3s ease-out;15}16 17.modal-content {18    animation: slideIn 0.3s ease-out;19}20 21/* Custom scrollbar for user list */22::-webkit-scrollbar {23    width: 8px;24}25 26::-webkit-scrollbar-track {27    background: #f1f1f1;28    border-radius: 4px;29}30 31::-webkit-scrollbar-thumb {32    background: #c1c1c1;33    border-radius: 4px;34}35 36::-webkit-scrollbar-thumb:hover {37    background: #a1a1a1;38}