From c1f7acee584ae096838121710e34e864f8de4bf9 Mon Sep 17 00:00:00 2001 From: Tommy Byrd Date: Tue, 19 Sep 2017 17:43:25 -0400 Subject: [PATCH 1/2] Make the page wider to give more room for README on desktop --- app/styles/app.scss | 2 +- app/styles/crate.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/styles/app.scss b/app/styles/app.scss index 9f0866a60a9..c54c6a3f01c 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -34,7 +34,7 @@ body { } .ember-application > div { - width: 900px; + width: 960px; @media only screen and (max-width: 900px) { width: 100%; } diff --git a/app/styles/crate.scss b/app/styles/crate.scss index 560dc19a775..79e6fa3e1b8 100644 --- a/app/styles/crate.scss +++ b/app/styles/crate.scss @@ -208,7 +208,7 @@ .docs { @include flex(7); padding-right: 40px; - max-width: 600px; + max-width: 640px; } .authorship { @include flex(3); From 835868c392b5f92050ba8468a3da7117943918aa Mon Sep 17 00:00:00 2001 From: Tommy Byrd Date: Tue, 19 Sep 2017 18:15:15 -0400 Subject: [PATCH 2/2] Make responsive screen width match the div width --- app/styles/app.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/styles/app.scss b/app/styles/app.scss index c54c6a3f01c..d21c08f0ae3 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -35,7 +35,7 @@ body { .ember-application > div { width: 960px; - @media only screen and (max-width: 900px) { + @media only screen and (max-width: 960px) { width: 100%; } }