diff --git a/www/src/components/BlogPost.astro b/www/src/components/BlogPost.astro index 748803e83..44154137e 100644 --- a/www/src/components/BlogPost.astro +++ b/www/src/components/BlogPost.astro @@ -11,7 +11,7 @@ export let heroImage: string;
- {heroImage && } + {heroImage && }

{publishDate}

{title}

@@ -31,6 +31,15 @@ export let heroImage: string; margin-bottom: 4rem; max-width: 1280px; } + +@media (max-width: 50em) { + .hero-image { + height: 260px; + margin-top: 0; + margin-bottom: 2rem; + } +} + .content { margin-bottom: 8rem; }