Merge pull request #19 from Nona-Creative/fix/multiple-answers-styling

Adding margin bottom for multiple answers results
This commit is contained in:
sharynt 2018-07-18 13:15:05 +02:00 committed by GitHub
commit 4fccc3a174
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -107,7 +107,7 @@ const SearchResults = (props) => {
</div>
{interview.matchingQuestionAnswerPositions ?
interview.matchingQuestionAnswerPositions.map(match => (
<div key={match.index + 1}>
<div className="question-wrap" key={match.index + 1}>
<h5>{match.index + 1})&nbsp;
{ findQuestion(match) }
</h5>

View File

@ -76,4 +76,8 @@
}
}
}
.question-wrap {
margin-bottom: calculateRem(20);
}
}