Skip to content

Commit

Permalink
fix(hjenglishcore): fix font size for hjenglishCore
Browse files Browse the repository at this point in the history
  • Loading branch information
tonytonyjan committed Jul 13, 2020
1 parent 27dc1d0 commit 1a10e4e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/dictionaries/hjenglishCore.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,10 @@ export default async (fetchPromise) => {
<div>
{panes.map((i, index) => (
<div key={index}>
<div className="lead">
{i.word} <span className="text-secondary">{i.pronunciation}</span>
<div>
<div className="lead">
{i.word} <span className="text-secondary">{i.pronunciation}</span>
</div>
{/* <div dangerouslySetInnerHTML={{ __html: i.simpleHtml }} /> */}
{i.groups.map((i, index) => (
<div key={index}>
Expand Down

0 comments on commit 1a10e4e

Please sign in to comment.