Files
test/sg_wechat_enterprise/static/css/loading.css
2024-07-10 15:58:47 +08:00

24 lines
408 B
CSS

@-webkit-keyframes loadingCircle {
to {
transform:rotate(1turn)
}
}
@keyframes loadingCircle {
to {
transform:rotate(1turn)
}
}
.load-box {
position:fixed;
top:calc(50% - 11px);
left:calc(50% - 111px);
display:flex;
align-items:center;
}
.load-icon {
animation:loadingCircle 1s linear infinite;
}
.load-txt {
font-size:16px;
margin-left:10px;
}