-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.js
67 lines (65 loc) · 1.25 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { StyleSheet, Dimensions } from 'react-native';
const { width: winWidth } = Dimensions.get('window');
export default StyleSheet.create({
alignCenter: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
bottomToolbar: {
width: winWidth,
position: 'absolute',
height: 100,
bottom: 0,
},
container: {
flex: 1,
backgroundColor: 'transparent',
flexDirection: 'column',
justifyContent: 'flex-end',
},
resultContainer: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#232323',
},
p: {
color: '#828280',
lineHeight: 24,
fontSize: 15,
marginRight: '3%'
},
languageBar: {
marginTop: '3%',
paddingVertical: '5%',
width: '100%'
},
row: {
flex: 1,
paddingVertical: 25,
paddingHorizontal: 15,
flexDirection: 'row',
justifyContent: 'space-between',
},
translation: {
fontSize: 20,
lineHeight: 40,
fontFamily: 'Avenir',
color: 'white',
},
english: {
fontSize: 25,
lineHeight: 40,
marginRight: 15,
fontWeight: 'bold',
fontFamily: 'Avenir',
color: 'white',
},
noCamera: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
fontSize: 70,
},
});