Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Bedon committed Aug 13, 2024
1 parent c8ed11c commit 67e819e
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions src/components/Thanks/AnimatedStars.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- eslint-disable max-len -->
<template>
<div>
<svg
Expand Down Expand Up @@ -65,19 +66,21 @@
}
.second-svg {
animation-delay: 0.5s;
animation-delay: 0.5s;
@apply tw-bottom-0 tw-left-0;
}
@keyframes fadeTransition {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>

0 comments on commit 67e819e

Please sign in to comment.