Merge pull request #51 from pmop/develop

[Workaround] Gengar: Break line when CertificationItem p content is too long.
This commit is contained in:
Amruth Pillai
2020-04-01 13:56:45 +05:30
committed by GitHub

View File

@ -117,7 +117,7 @@ const Gengar = () => {
<div key={x.title} className="mb-3">
<h6 className="font-semibold">{x.title}</h6>
<p className="text-xs">{x.subtitle}</p>
<ReactMarkdown className="mt-2 text-sm" source={x.description} />
<ReactMarkdown className="mt-2 text-sm break-words" source={x.description} />
</div>
);