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