From 937b87938fb63a2adf5c0f2951cab26997f33747 Mon Sep 17 00:00:00 2001 From: Maxi Ferreira Date: Fri, 12 Aug 2022 13:01:55 -0700 Subject: [PATCH] Fixed image min height --- src/pages/index.astro | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 3d4b6ca..27cf20d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -16,7 +16,7 @@ const permalink = Astro.site.href;
- Illustration of person reading a book + Illustration of person reading a book

Illustration by @@ -53,9 +53,13 @@ const permalink = Astro.site.href; font-size: 1.4em; } - .home-image-container { + .hero-image-container { margin: 0 1em; text-align: center; + } + + .hero-image-container picture { + display: block; min-height: 250px; }