Skip to content

Commit

Permalink
Update Lockup.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
thejessewinton committed Aug 6, 2024
1 parent eaac62b commit 734ab61
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/routes/init/(components)/Lockup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -113,20 +113,20 @@
@keyframes stroke {
0% {
stroke-dasharray: 0 1000;
stroke-dashoffset: 0;
stroke-dashoffset: 1000;
}
25% {
stroke-dasharray: 500 500;
stroke-dashoffset: 500;
stroke-dashoffset: 1000;
}
50% {
stroke-dasharray: 500 500;
stroke-dashoffset: 1000;
stroke-dashoffset: 500;
}
75%,
100% {
stroke-dasharray: 0 1000;
stroke-dashoffset: 1000;
stroke-dashoffset: 0;
}
}
}
Expand Down

0 comments on commit 734ab61

Please sign in to comment.