fix(login): remove bold text

This commit is contained in:
trashtemp 2021-12-25 21:29:44 +01:00
parent 029bff3d68
commit d439d63a91
No known key found for this signature in database
GPG key ID: D1F0DB65081B0FC6
2 changed files with 4 additions and 16 deletions

View file

@ -96,10 +96,6 @@
font-size: 13px; font-size: 13px;
word-break: keep-all; word-break: keep-all;
b {
font-weight: 600;
}
a { a {
color: var(--accent); color: var(--accent);
white-space: nowrap; white-space: nowrap;

View file

@ -211,17 +211,13 @@ export function Form({ page, callback }: Props) {
{page === "create" && ( {page === "create" && (
<> <>
<span className={styles.create}> <span className={styles.create}>
<b> <Text id="login.existing" />{" "}
<Text id="login.existing" />
</b>{" "}
<Link to="/login"> <Link to="/login">
<Text id="login.title" /> <Text id="login.title" />
</Link> </Link>
</span> </span>
<span className={styles.create}> <span className={styles.create}>
<b> <Text id="login.missing_verification" />{" "}
<Text id="login.missing_verification" />
</b>{" "}
<Link to="/login/resend"> <Link to="/login/resend">
<Text id="login.resend" /> <Text id="login.resend" />
</Link> </Link>
@ -231,17 +227,13 @@ export function Form({ page, callback }: Props) {
{page === "login" && ( {page === "login" && (
<> <>
<span className={styles.create}> <span className={styles.create}>
<b> <Text id="login.new" />{" "}
<Text id="login.new" />
</b>{" "}
<Link to="/login/create"> <Link to="/login/create">
<Text id="login.create" /> <Text id="login.create" />
</Link> </Link>
</span> </span>
<span className={styles.create}> <span className={styles.create}>
<b> <Text id="login.forgot" />{" "}
<Text id="login.forgot" />
</b>{" "}
<Link to="/login/reset"> <Link to="/login/reset">
<Text id="login.reset" /> <Text id="login.reset" />
</Link> </Link>