From 1d6a98a40e6f5b9ed8348f2c7a87b1d5cb9df250 Mon Sep 17 00:00:00 2001 From: David Fifield Date: Fri, 23 Aug 2019 22:41:51 -0600 Subject: [PATCH] Limit the maximum horizontal content width to 55rem. --- proxy/static/index.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/proxy/static/index.css b/proxy/static/index.css index 6c75800..00602e0 100644 --- a/proxy/static/index.css +++ b/proxy/static/index.css @@ -26,7 +26,8 @@ header a { } #content { - margin: 0 0 2.6rem 0; + max-width: 55rem; + margin: 0 auto 2.6rem auto; padding: 2.6rem 5.2rem; background-color: #FFFFFF; }