Skip to content

Commit 8d8b27b

Browse files
committed
fix: opacity
1 parent 1311fbe commit 8d8b27b

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

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

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@
1919
}
2020
2121
@keyframes move {
22-
0% {
23-
offset-distance: 100%;
24-
}
25-
100% {
26-
offset-distance: 0%;
27-
}
28-
}
22+
0% {
23+
offset-distance: 100%;
24+
opacity: 1;
25+
}
26+
100% {
27+
offset-distance: 0%;
28+
opacity: 0;
29+
}
30+
}
2931
</style>
3032

3133
<article class="w-full h-[80vh] px-16 flex items-center bg-gray rounded-md">

0 commit comments

Comments
 (0)