From bdd05b3c0c995717093aaa680c4dddda582c040e Mon Sep 17 00:00:00 2001 From: Robert Lord Date: Thu, 31 Oct 2013 10:56:54 -0700 Subject: [PATCH] Fix bug where weird white block could appear at bottom of page. This bug occured if the final code sample extended beyond the explanation at the bottom of the page. To fix it, I simply made the background color of body a soft blue. --- source/stylesheets/screen.css.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/source/stylesheets/screen.css.scss b/source/stylesheets/screen.css.scss index 99efe53..d4f259c 100644 --- a/source/stylesheets/screen.css.scss +++ b/source/stylesheets/screen.css.scss @@ -30,6 +30,7 @@ html, body { margin: 0; -webkit-font-smoothing: antialiased; @extend %default-font; + background-color: $main-bg; } ////////////////////////////////////////////////////////////////////////////////