mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 07:03:59 -06:00

JIRA: none Change-Id: I43d79d740b9180a16d02c54c0c9d6e11c23b1ce7 (cherry picked from commit 03d8d58fad95199236ee7a5f931d3f395ee8dc1d)
21 lines
No EOL
266 B
CSS
21 lines
No EOL
266 B
CSS
@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%;
|
|
} |