+ 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.
This commit is contained in:
Wray Bowling 2017-12-29 15:21:06 -05:00 committed by GitHub
parent b636ab2a40
commit f2dbf5a737
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -216,6 +216,7 @@ code {
.codeAndCanvas {
height:auto;
min-height:250px;
clear:both;
}