mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-30 02:56:20 -05:00
Merge pull request #3012 from benjiwheeler/fix-firefox-instructions
fix firefox instructions height overflow issue
This commit is contained in:
commit
0524b21b4e
1 changed files with 6 additions and 0 deletions
|
@ -444,6 +444,12 @@ $stage-width: 480px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: flex-start;
|
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 {
|
.project-textlabel {
|
||||||
|
|
Loading…
Reference in a new issue