From f2dbf5a737a2bfc2d0d0c9e04dcea0f91d863b60 Mon Sep 17 00:00:00 2001 From: Wray Bowling Date: Fri, 29 Dec 2017 15:21:06 -0500 Subject: [PATCH] + min-height on .codeAndCanvas Text was wrapping oddly on the Hello World because the code and canvas block did not have a minimum height. This could be refactored further in favor of CSS Grids. --- css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/style.css b/css/style.css index 6b42c22..2ae6011 100644 --- a/css/style.css +++ b/css/style.css @@ -216,6 +216,7 @@ code { .codeAndCanvas { height:auto; + min-height:250px; clear:both; }