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.
This commit is contained in:
Robert Lord 2013-10-31 10:56:54 -07:00
parent 7c6594c595
commit bdd05b3c0c

View file

@ -30,6 +30,7 @@ html, body {
margin: 0;
-webkit-font-smoothing: antialiased;
@extend %default-font;
background-color: $main-bg;
}
////////////////////////////////////////////////////////////////////////////////