mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-16 22:29:24 +08:00
Fixed registration page font color
This commit is contained in:
parent
012f02d4e7
commit
a66813c184
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ export default function Register() {
|
|||
<p style={{ ...styles.text_white, ...styles.text_L }}>Username</p>
|
||||
<div style={{ margin: 4 }} />
|
||||
<input
|
||||
style={{ ...styles.text_white, ...styles.text_L }}
|
||||
style={styles.text_L}
|
||||
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
setUser({ ...user, username: e.target.value });
|
||||
}}
|
||||
|
@ -53,7 +53,7 @@ export default function Register() {
|
|||
<p style={{ ...styles.text_white, ...styles.text_L }}>Password</p>
|
||||
<div style={{ margin: 4 }} />
|
||||
<input
|
||||
style={{ ...styles.text_white, ...styles.text_L }}
|
||||
style={styles.text_L}
|
||||
type="password"
|
||||
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
setUser({ ...user, password: e.target.value });
|
||||
|
|
Loading…
Reference in a new issue