Skip to content

Commit

Permalink
fix: heroes marquee
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann committed Sep 28, 2023
1 parent f53f292 commit 022eb63
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/routes/heroes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -746,5 +746,19 @@
</div>
</div>
</div>
</div></Main
>
</div>
</Main>

<style lang="scss">
.aw-scroll-carousel li {
animation: marquee 15s linear infinite;
@keyframes marquee {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-100%, 0);
}
}
}
</style>

0 comments on commit 022eb63

Please sign in to comment.