Files
ExtraNetwork e5c4b6aa13 first commit
2026-05-12 17:04:54 +03:00

25 lines
365 B
CSS

.load__icon {
animation: linear load 2s infinite;
width: 32px;
height: 32px;
}
.load__icon-wrap {
margin: auto;
}
.load {
height: calc(100vh - 16px);
width: 100%;
display: flex;
align-items: center;
}
@keyframes load {
from {
transform: rotate(0deg) scale(2);
}
to {
transform: rotate(360deg) scale(2);
}
}