1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 02:45:21 -04:00
jarv.is/components/Loading/Loading.module.css
2025-04-24 11:20:02 -04:00

23 lines
321 B
CSS

.loading {
display: inline-block;
text-align: center;
}
.box {
display: inline-block;
height: 100%;
animation: loading 1.5s infinite ease-in-out both;
background-color: var(--color-gray-500);
}
@keyframes loading {
0%,
80%,
100% {
transform: scale(0);
}
40% {
transform: scale(0.6);
}
}