react-chatbot-test / src /styles /Spinner.css
ferrywuai's picture
Modularize chat completion and add loading and typing animation
cc1ccff
.spinner {
width: 24px;
height: 24px;
border: 4px solid #ccc;
border-top-color: #333;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}