From b512b2980867ba52f78bfb3dced62a99489109be Mon Sep 17 00:00:00 2001 From: Troy Date: Sun, 16 Feb 2025 20:03:52 +0000 Subject: [PATCH] fix: remove min-h-screen from layout --- astro.config.ts | 3 --- src/components/Header.astro | 4 +++- src/components/Hero.astro | 4 ++-- src/layouts/Layout.astro | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/astro.config.ts b/astro.config.ts index b03b105..8fe7de3 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -33,7 +33,4 @@ export default defineConfig({ image: { service: passthroughImageService(), }, - experimental: { - responsiveImages: true, - }, }); diff --git a/src/components/Header.astro b/src/components/Header.astro index 5f69496..407cfac 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -33,7 +33,9 @@ const currentPath = pathname.replace(/\/$/, ""); ); }) } -