Skip to content

Commit

Permalink
fix mobile hero animation
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabricius Seifert committed Jun 15, 2024
1 parent d537dd8 commit ce6e438
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/content/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@

@keyframes swap {
0% {
transform: translateY(-70%);
transform: translateY(-30%);
opacity: 0;
}

Expand All @@ -299,12 +299,12 @@
}

14% {
transform: translateY(70%);
transform: translateY(30%);
opacity: 0;
}

100% {
transform: translateY(70%);
transform: translateY(30%);
opacity: 0;
}
}
Expand Down

0 comments on commit ce6e438

Please sign in to comment.