-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.js
45 lines (44 loc) · 834 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
43
44
45
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
container: {
flex: 1,
paddingTop: 10
},
section: {
paddingLeft: 15,
paddingRight: 15
},
header: {
fontSize: 14,
fontWeight: 'bold',
flex: 1
},
row: {
flexDirection: 'row',
justifyContent: 'space-between',
paddingTop: 10,
margin: 0
},
author: {
height: 44,
textAlign: 'left',
color: 'grey'
},
upvotes: {
textAlign: 'right',
color: 'grey'
},
thumbnail: {
height: 50,
width: 50,
marginRight: 10
},
thumbnail_large: {
height: 290,
width: 290,
},
subtitle: {
color: 'grey',
paddingBottom: 10
}
})