From 76bea247555981867bc1485547c5bf51ec4c4606 Mon Sep 17 00:00:00 2001 From: "Reid \"reidlab" Date: Tue, 9 Jul 2024 00:25:59 -0700 Subject: [PATCH] make the intro come from the bottom --- src/components/Intro.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Intro.astro b/src/components/Intro.astro index 328d7d8..2224bc9 100644 --- a/src/components/Intro.astro +++ b/src/components/Intro.astro @@ -51,12 +51,12 @@ @keyframes loader { 0% { - width: 100vw; + height: 100vh; display: block; } 100% { - width: 0vw; + height: 0vh; display: none; } }