1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-04-22 04:15:31 -04:00
Files
jarv.is/components/Loading/Loading.module.css
T
2025-02-07 11:33:38 -05:00

23 lines
325 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(--colors-mediumLight);
}
@keyframes loading {
0%,
80%,
100% {
transform: scale(0);
}
40% {
transform: scale(0.6);
}
}