zorro.zhang 96d91af481 ENH: Update UserGuide Dark UI
JIRA: none
Change-Id: I277b16e44e78891b815a15b1d64c28b46daf0b2f
2025-03-22 22:15:18 +08:00

35 lines
419 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;
}