diff --git a/src/components/np-picker/NPPronounPicker.tsx b/src/components/np-picker/NPPronounPicker.tsx index 45ac686..37ce2e0 100644 --- a/src/components/np-picker/NPPronounPicker.tsx +++ b/src/components/np-picker/NPPronounPicker.tsx @@ -94,7 +94,7 @@ function NPPronounPicker({ onChange, pronoun, asObject, clearButton }: { } const prs = labels(!!asObject)[display]; const pSpec = "near" in prs ? prs[pronoun.distance] : prs; - return
+ return
{clearButton}
- +
{pSpec.map((rw, i) => ( @@ -117,7 +117,10 @@ function NPPronounPicker({ onChange, pronoun, asObject, clearButton }: { return
handleClick(i, j)} className={classNames({ "table-active": active })} - style={active ? { backgroundColor: gColors[p.gender] } : {}} + style={{ + backgroundColor: active ? gColors[p.gender] : "inherit", + padding: "0.25rem 0", + }} >
{typeof r === "string" ? r : r[p.gender]} diff --git a/src/components/phrase-builder/PhraseBuilder.tsx b/src/components/phrase-builder/PhraseBuilder.tsx index aa83c0c..f45d62c 100644 --- a/src/components/phrase-builder/PhraseBuilder.tsx +++ b/src/components/phrase-builder/PhraseBuilder.tsx @@ -56,7 +56,7 @@ export function PhraseBuilder() {
{` `}
}
-
+
Subject {showRole(VPRendered, "subject")}
- {verb && (verb.object !== "none") &&
+ {verb && (verb.object !== "none") &&
Object {showRole(VPRendered, "object")}
} -
+
Verb
diff --git a/src/content/practice-tools/phrase-builder.mdx b/src/content/practice-tools/phrase-builder.mdx index 2949a3e..f0db0f9 100644 --- a/src/content/practice-tools/phrase-builder.mdx +++ b/src/content/practice-tools/phrase-builder.mdx @@ -5,6 +5,4 @@ fullWidth: true import PhraseBuilder from "../../components/phrase-builder/PhraseBuilder"; -##### This is under construction... It works but will get better. 🤓 - \ No newline at end of file