BambuStudio/resources/web/guide/0/load.css

21 lines
266 B
CSS
Raw Normal View History

@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
body
{
display:flex;
align-content: center;
justify-content: center;
}
#LoadingSvg
{
animation: rotate 5s infinite linear;
height: 60%;
}