glide-design-system
Version:
Glide design system is an open-source React component library. It offers numerous benefits that make them essential tools for design and development teams.
14 lines (13 loc) • 332 B
CSS
.skeleton {
background: linear-gradient(90deg, #d7d7d7 0%, #e1e1e1 75%, #d7d7d7 100%);
background-size: 200% 100%;
animation: 2s ease-in-out 0.5s infinite normal none running shimmer;
}
@keyframes shimmer {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}