From 8f472ee13195e658c8ca15802b41928ccfffc842 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Mon, 29 Oct 2018 09:19:14 -0400 Subject: [PATCH] Limit site width to 1920px --- style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/style.css b/style.css index 613e2e7..5f4cb19 100644 --- a/style.css +++ b/style.css @@ -925,6 +925,8 @@ a:hover, a:active { --------------------------------------------------------------*/ .site { height: 100%; + max-width: 1920px; + margin: auto; display: flex; flex-direction: column; justify-content: space-between;