mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-07-30 00:22:03 +08:00

JIRA: none Change-Id: Ifc8cdd59a61dfece6c497ed50fcad9663d380be3 (cherry picked from commit 37918c4463fe6bdced742d5d81d756fa811510b7)
36 lines
436 B
CSS
36 lines
436 B
CSS
@keyframes rotate {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
body
|
|
{
|
|
display:flex;
|
|
align-content: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#LoadBlock
|
|
{
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#LoadingSvg
|
|
{
|
|
animation: rotate 1.2s infinite linear;
|
|
margin-right: 8px;
|
|
height: 120%;
|
|
}
|
|
|
|
#LoadTip
|
|
{
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
color: #262E30;
|
|
} |