-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyles.js
42 lines (39 loc) · 781 Bytes
/
Styles.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
padding: 0,
backgroundColor: 'green',
},
logo: {
imageResize: 'cover',
width: '95%',
height: 90,
marginBottom: 50,
marginLeft: 10,
},
logoArea: {
marginBottom: 50,
},
inputCep: {
marginTop: 30,
marginBottom: 20,
padding: 5,
backgroundColor: '#FFF',
borderRadius: 5,
},
viewArea: {
backGroundColor: 'olive',
padding: 15,
fontSize: 16,
},
subText: {
fontSize: 14,
marginTop: 100
},
btn: {
color: '#000'
}
})
export default styles;