Skip to content

Commit 6014106

Browse files
committed
fix: dot animation
1 parent 8d8b27b commit 6014106

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

infrastructure/control-panel/src/fragments/LiveDataFlow/LiveDataFlow.svelte

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,21 @@
2020
2121
@keyframes move {
2222
0% {
23-
offset-distance: 100%;
24-
opacity: 1;
23+
offset-distance: 100%;
24+
opacity: 1;
25+
}
26+
25%{
27+
opacity: 1;
28+
}
29+
50%{
30+
opacity: 1;
31+
}
32+
75%{
33+
opacity: 1;
2534
}
2635
100% {
27-
offset-distance: 0%;
28-
opacity: 0;
36+
offset-distance: 0%;
37+
opacity: 0;
2938
}
3039
}
3140
</style>

0 commit comments

Comments
 (0)