fix: align news loader animation

This commit is contained in:
SethBurkart123
2026-03-18 10:29:50 +11:00
parent 6ad221fcb5
commit d9f0d89450
+13 -6
View File
@@ -2773,20 +2773,25 @@ body {
position: absolute; position: absolute;
top: 50%; top: 50%;
left: 50%; left: 50%;
will-change: transform;
} }
.logo { .logo {
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
} }
.big-circle { .big-circle {
margin: -88px; margin: -88px;
animation: spin 3s ease infinite; will-change: transform;
-moz-animation: spin 3s ease infinite; animation-timing-function: linear;
animation: spin 3s linear infinite;
-moz-animation: spin 3s linear infinite;
} }
.small-circle { .small-circle {
margin: -66px; margin: -66px;
animation: spin 3s ease infinite; will-change: transform;
-moz-animation: spin 3s ease infinite; animation-timing-function: linear;
animation: spin 3s linear infinite;
-moz-animation: spin 3s linear infinite;
} }
.dark [class*="LabelList__name___"] { .dark [class*="LabelList__name___"] {
@@ -2830,8 +2835,10 @@ body {
} }
.outer-circle { .outer-circle {
margin: -108px; margin: -108px;
animation: spinback 1s linear infinite alternate-reverse; will-change: transform;
-moz-animation: spinback 1s linear infinite alternate-reverse; animation-direction: alternate-reverse;
animation: spinback 1s linear infinite;
-moz-animation: spinback 1s linear infinite;
} }
@-moz-keyframes spin { @-moz-keyframes spin {
100% { 100% {