From 482d2515ce7d268477c91a4a5015532b82798c14 Mon Sep 17 00:00:00 2001 From: Zac Svoboda Date: Thu, 19 Aug 2021 20:14:09 -0400 Subject: [PATCH] Correct small screen overflow on Firefox --- www/src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/src/pages/index.astro b/www/src/pages/index.astro index f2a8f7f269..db9516572a 100644 --- a/www/src/pages/index.astro +++ b/www/src/pages/index.astro @@ -43,7 +43,7 @@ let description = 'Snowpack is a lightning-fast frontend build tool, designed fo text-align: center; img { - max-width: 32rem; + max-width: min(32rem, 100%); } }