Merge pull request #3012 from benjiwheeler/fix-firefox-instructions

fix firefox instructions height overflow issue
This commit is contained in:
Benjamin Wheeler 2019-05-29 11:48:14 -04:00 committed by GitHub
commit 0524b21b4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -444,6 +444,12 @@ $stage-width: 480px;
height: 100%;
flex-direction: column;
align-items: flex-start;
/*
necessary to fix flexbox sizing issue that caused instructions
to flow over the top and bottom of the project notes section.
see https://stackoverflow.com/a/36247448
*/
min-height: 0;
}
.project-textlabel {