From 83f16f72053d2e75f4ec67ca5813537603ad78fc Mon Sep 17 00:00:00 2001 From: aguilhot Date: Tue, 22 Nov 2022 11:03:43 +0100 Subject: [PATCH] styles --- bob_party/src/screens/style/Settings.style.js | 4 --- bob_party/src/screens/style/SignIn.style.js | 6 ++-- bob_party/src/screens/style/SignUp.style.js | 35 +++++++++++++++++++ bob_party/src/screens/style/screens.style.js | 6 +++- 4 files changed, 44 insertions(+), 7 deletions(-) create mode 100644 bob_party/src/screens/style/SignUp.style.js diff --git a/bob_party/src/screens/style/Settings.style.js b/bob_party/src/screens/style/Settings.style.js index a1edfb3..5b12448 100644 --- a/bob_party/src/screens/style/Settings.style.js +++ b/bob_party/src/screens/style/Settings.style.js @@ -29,8 +29,4 @@ export default StyleSheet.create({ margin: 15, padding: 15, }, - RNPView: { - alignSelf: 'center', - padding: 20, - } }); \ No newline at end of file diff --git a/bob_party/src/screens/style/SignIn.style.js b/bob_party/src/screens/style/SignIn.style.js index 881500f..34eeeb6 100644 --- a/bob_party/src/screens/style/SignIn.style.js +++ b/bob_party/src/screens/style/SignIn.style.js @@ -19,14 +19,16 @@ export default StyleSheet.create({ letterSpacing: 0.25, color: 'white', }, - signup:{ + textLink:{ fontSize:15, color:'white', textDecorationLine:"underline", }, textInput: { - width: '50%', + width: '80%', height: '5%', backgroundColor: 'white', + padding: 10, + marginVertical: 10, } }); \ No newline at end of file diff --git a/bob_party/src/screens/style/SignUp.style.js b/bob_party/src/screens/style/SignUp.style.js new file mode 100644 index 0000000..6889ee4 --- /dev/null +++ b/bob_party/src/screens/style/SignUp.style.js @@ -0,0 +1,35 @@ +import { StyleSheet } from "react-native"; + + +export default StyleSheet.create({ + textInput: { + width: '100%', + height: '5%', + backgroundColor: 'white', + padding: 10, + marginTop: 10, + }, + button: { + alignItems: 'center', + justifyContent: 'center', + height: 50, + width: 225, + margin:'10%', + borderRadius: 10, + elevation: 3, + backgroundColor: '#0085FF', + }, + text: { + fontSize: 16, + lineHeight: 21, + fontWeight: 'bold', + letterSpacing: 0.25, + color: 'white', + }, + textLink:{ + fontSize:15, + color:'white', + textDecorationLine:"underline", + }, +}) + diff --git a/bob_party/src/screens/style/screens.style.js b/bob_party/src/screens/style/screens.style.js index f3f0773..d994c1c 100644 --- a/bob_party/src/screens/style/screens.style.js +++ b/bob_party/src/screens/style/screens.style.js @@ -23,5 +23,9 @@ export default StyleSheet.create({ alignItems: 'center', justifyContent: 'center', width: '100%', - }, + }, + RNPView: { + alignSelf: 'center', + padding: 20, + } }); \ No newline at end of file