Adding margin bottom for multiple answers results
This commit is contained in:
parent
fb7cc5610e
commit
97d13a3281
|
@ -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})
|
||||
{ findQuestion(match) }
|
||||
</h5>
|
||||
|
|
|
@ -76,4 +76,8 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.question-wrap {
|
||||
margin-bottom: calculateRem(20);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue