We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5110c8 commit 5154b6dCopy full SHA for 5154b6d
packages/core/src/constant/DefaultTheme.ts
@@ -391,7 +391,7 @@ export const defaultTheme: Theme = {
391
stroke: 'red',
392
strokeDasharray: '10 10',
393
strokeDashoffset: '100%',
394
- animationName: 'dash',
+ animationName: 'lf_animate_dash',
395
animationDuration: '20s',
396
animationIterationCount: 'infinite',
397
animationTimingFunction: 'linear',
packages/core/src/style/index.css
@@ -32,9 +32,9 @@
32
}
33
.lf-edge-animation {
34
stroke-dashoffset: 100%;
35
- animation: dash 5s linear infinite;
+ animation: lf_animate_dash 5s linear infinite;
36
37
-@keyframes dash {
+@keyframes lf_animate_dash {
38
to {
39
stroke-dashoffset: 0;
40
0 commit comments