From ec665d7bd66327f9cd7405eef36829278964669d Mon Sep 17 00:00:00 2001 From: James Polley Date: Thu, 2 Aug 2018 11:51:09 +0000 Subject: [PATCH] Use more real estate on xl screens Prior to this change, on a screem >1200px wide the .container was capped at 1140px, which leaves a lot of whitespace. This increases the cap to 1900px, more effectively using larger screens while still preventing the text from getting so wide as to be hard to read. Partial fix for #109 --- static/src/scss/app.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/src/scss/app.scss b/static/src/scss/app.scss index 788aa2a9..4d41a51c 100644 --- a/static/src/scss/app.scss +++ b/static/src/scss/app.scss @@ -125,6 +125,11 @@ main.container-fluid { padding: 0; } +@include media-breakpoint-up(xl) { + .container{ + max-width: 1900px + } +}