format not big space below FormsDisplay

This commit is contained in:
lingdocs 2021-07-09 15:42:55 +03:00
parent a36ae0a112
commit 074f028439
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@lingdocs/pashto-inflector", "name": "@lingdocs/pashto-inflector",
"version": "0.7.0", "version": "0.7.1",
"author": "lingdocs.com", "author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
"homepage": "https://verbs.lingdocs.com", "homepage": "https://verbs.lingdocs.com",

View File

@ -244,7 +244,7 @@ function ConjugationViewer({ entry, complement, textOptions, aayTailType, showOn
negative: state.negative, negative: state.negative,
sentenceLevel, sentenceLevel,
englishConjugation, englishConjugation,
}); })
return <div className="mb-4"> return <div className="mb-4">
{"transitive" in conjugation && <div className="text-center my-2"> {"transitive" in conjugation && <div className="text-center my-2">
<VerbChoiceWarning /> <VerbChoiceWarning />
@ -424,7 +424,7 @@ function FormsDisplay({ forms, state, handleChange, textOptions, verbConj }: {
})} })}
</div> </div>
} }
return <div style={{ marginBottom: "5rem" }}> return <div className="mb-2">
{drawLevel(forms, 0)} {drawLevel(forms, 0)}
</div>; </div>;
} }