Skip to content

Commit d1c0435

Browse files
committed
fix: loader animation
1 parent f0e64c3 commit d1c0435

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

GUI/ETVR/src/components/Loader/styles.css

+8-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
}
66

77
.shape {
8-
animation: rotate 4s ease-in-out infinite, dash 1.5s ease-in-out infinite;
8+
animation: rotate 1.5s linear infinite;
99
}
1010

1111
.shape .gradient-bg {
12+
animation: dash 4s ease-in-out infinite;
1213
stroke: url(#shape-gradient);
1314
fill: none;
1415
stroke-width: 0.25;
16+
stroke-linecap: round;
1517
}
1618

1719
.spinner {
@@ -41,6 +43,10 @@
4143

4244
@keyframes rotate {
4345
0% {
44-
transform: rotate(-360deg);
46+
transform: rotate(0deg);
47+
}
48+
49+
100% {
50+
transform: rotate(360deg);
4551
}
4652
}

0 commit comments

Comments
 (0)