Edited: Styles on login page, styles on sign up page

This commit is contained in:
2024-05-09 18:05:15 +02:00
parent 05d0ff7134
commit 7c25158c85
3 changed files with 35 additions and 14 deletions

View File

@ -69,7 +69,9 @@ function LoginPage() {
/>
</View>
<View>
<Link href="/signup">Don't have an account?</Link>
<Link href="/signup" style={styles.signup}>
Don't have an account?
</Link>
</View>
</View>
</View>
@ -106,7 +108,7 @@ const styles = StyleSheet.create({
header: {
width: "100%",
alignItems: "center",
paddingTop: "10%",
paddingTop: "20%",
},
input: {
height: "auto",
@ -131,6 +133,12 @@ const styles = StyleSheet.create({
top: 0,
height: "100%",
},
signup: {
textDecorationLine: "underline",
fontSize: 14,
marginTop: 10,
fontStyle: "italic",
},
});
export default LoginPage;