softchatjs-react
Version:
Install the softchat-js SDKs
34 lines (30 loc) • 507 B
CSS
.loader {
width: 100%;
height: 1.5px;
background-color: #e0e0e0;
overflow: hidden;
position: relative;
}
.loader::before {
content: '';
position: absolute;
left: -100%;
width: 100%;
height: 100%;
background-color: #3498db; /* Loader color */
animation: loading 1.5s infinite ease-in-out;
}
@keyframes loading {
0% {
left: -100%;
width: 100%;
}
50% {
left: 25%;
width: 50%;
}
100% {
left: 100%;
width: 100%;
}
}