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;
word-break: keep-all;
b {
font-weight: 600;
}
a {
color: var(--accent);
white-space: nowrap;

View file

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