fixing console error

This commit is contained in:
Sharyn 2018-07-17 16:29:59 +02:00
parent e4c6392fda
commit fe796deef0
2 changed files with 5 additions and 7 deletions

View File

@ -19,7 +19,7 @@ const SingleInterview = props => (
return (
<div className="qa-block" key={`question-${question.id}`}>
<p className="question">{index + 1}) { question.text }</p>
<p className="answer">{ Parser(interview.answer) }</p>
<div className="answer">{ Parser(interview.answer) }</div>
</div>
);
})

View File

@ -14,15 +14,11 @@
text-decoration: underline;
}
h3,
h5 {
color: #fff;
margin-bottom: calculateRem(8);
}
h3 {
color: #fff;
font-size: calculateRem(24);
display: inline-block;
margin-bottom: calculateRem(12);
&.matched-name {
@include hasRedUnderline;
@ -31,7 +27,9 @@
}
h5 {
color: #fff;
font-size: calculateRem(16);
margin-bottom: calculateRem(8);
}
p {