Merge pull request #2479 from benjiwheeler/fix-misalign

don't use flex-row class to wrap instructions and credits
This commit is contained in:
Benjamin Wheeler 2018-12-13 15:48:15 -05:00 committed by GitHub
commit d949edef6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -345,7 +345,7 @@ const PreviewPresentation = ({
</FlexRow> </FlexRow>
</FlexRow> </FlexRow>
</MediaQuery> </MediaQuery>
<FlexRow className="description-block"> <div className="description-block">
<div className="project-textlabel"> <div className="project-textlabel">
<FormattedMessage id="project.instructionsLabel" /> <FormattedMessage id="project.instructionsLabel" />
</div> </div>
@ -385,8 +385,8 @@ const PreviewPresentation = ({
})} })}
</div> </div>
} }
</FlexRow> </div>
<FlexRow className="description-block"> <div className="description-block">
<div className="project-textlabel"> <div className="project-textlabel">
<FormattedMessage id="project.notesAndCreditsLabel" /> <FormattedMessage id="project.notesAndCreditsLabel" />
</div> </div>
@ -427,7 +427,7 @@ const PreviewPresentation = ({
})} })}
</div> </div>
} }
</FlexRow> </div>
{/* eslint-enable max-len */} {/* eslint-enable max-len */}
</FlexRow> </FlexRow>
</FlexRow> </FlexRow>