Adding margin bottom for multiple answers results

This commit is contained in:
Sharyn 2018-07-18 13:10:58 +02:00
parent fb7cc5610e
commit 97d13a3281
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);
}
}