typescript^2
Alban GUILHOT 2 years ago
parent 43ce1dc6af
commit 83f16f7205

@ -29,8 +29,4 @@ export default StyleSheet.create({
margin: 15, margin: 15,
padding: 15, padding: 15,
}, },
RNPView: {
alignSelf: 'center',
padding: 20,
}
}); });

@ -19,14 +19,16 @@ export default StyleSheet.create({
letterSpacing: 0.25, letterSpacing: 0.25,
color: 'white', color: 'white',
}, },
signup:{ textLink:{
fontSize:15, fontSize:15,
color:'white', color:'white',
textDecorationLine:"underline", textDecorationLine:"underline",
}, },
textInput: { textInput: {
width: '50%', width: '80%',
height: '5%', height: '5%',
backgroundColor: 'white', backgroundColor: 'white',
padding: 10,
marginVertical: 10,
} }
}); });

@ -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",
},
})

@ -23,5 +23,9 @@ export default StyleSheet.create({
alignItems: 'center', alignItems: 'center',
justifyContent: 'center', justifyContent: 'center',
width: '100%', width: '100%',
}, },
RNPView: {
alignSelf: 'center',
padding: 20,
}
}); });
Loading…
Cancel
Save