From 0209b4cfaa035f422edf482ca29bfe8cc6232feb Mon Sep 17 00:00:00 2001 From: Thomas Smith <49042513+tsmitty11@users.noreply.github.com> Date: Thu, 3 Nov 2022 14:34:34 -0400 Subject: [PATCH] No max width above 1792px... scales up infinitely --- src/static/css/homepage.css | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/static/css/homepage.css b/src/static/css/homepage.css index 70991ce..f5b625f 100644 --- a/src/static/css/homepage.css +++ b/src/static/css/homepage.css @@ -1,6 +1,22 @@ /* General/Utilities */ +@media only screen and (min-width: 1792px) { -@media only screen and (min-width: 1200px) { + html,body{ + background-color: #1a1a1a; + max-width: none; + overflow-x: hidden; + margin-top: 2.2vw; + } + + .container{ + max-width: none; + padding: 4.5vw 8.371vw 4.185vw 8.371vw; + } + + +} + +@media only screen and (min-width: 1200px) and (max-width: 1792px) { html,body{ background-color: #1a1a1a;