From 6f327b37161822b0337ba5868c383b60853e09ee Mon Sep 17 00:00:00 2001 From: Lynne Megido Date: Wed, 1 May 2019 20:28:24 +0000 Subject: [PATCH] don't go over 100% width --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 84c1d0b..da26e10 100644 --- a/style.css +++ b/style.css @@ -14,7 +14,7 @@ a:hover { article, footer { width: 50%; max-width: 1000px; - min-width: 500px; + min-width: min(500px, 100%); margin: 0 auto; line-height:1.4em; }