mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
fix(login): remove bold text
This commit is contained in:
parent
029bff3d68
commit
d439d63a91
2 changed files with 4 additions and 16 deletions
|
@ -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;
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue