From ce6e438708a7bf99bd808f22fb145a30fafc9a77 Mon Sep 17 00:00:00 2001 From: Fabricius Seifert Date: Sat, 15 Jun 2024 19:57:04 +0200 Subject: [PATCH] fix mobile hero animation --- src/components/content/Hero.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/content/Hero.astro b/src/components/content/Hero.astro index 64303af..a9d37b3 100644 --- a/src/components/content/Hero.astro +++ b/src/components/content/Hero.astro @@ -284,7 +284,7 @@ @keyframes swap { 0% { - transform: translateY(-70%); + transform: translateY(-30%); opacity: 0; } @@ -299,12 +299,12 @@ } 14% { - transform: translateY(70%); + transform: translateY(30%); opacity: 0; } 100% { - transform: translateY(70%); + transform: translateY(30%); opacity: 0; } }