-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomponent.styles.ts
56 lines (55 loc) · 1.06 KB
/
component.styles.ts
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
import {StyleSheet} from 'react-native';
export const playerStyles = StyleSheet.create({
title: {
color: '#0044C3',
fontSize: 16,
fontWeight: '600',
},
title_minimal: {
color: '#FFF',
fontSize: 16,
fontWeight: '600',
},
icons: {
color: '#0044C3',
},
icons_minimal: {
color: '#FFF',
},
centered_row_space_between: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
},
floating_container_pressed: {
backgroundColor: '#F73655E5',
},
floating_container: {
backgroundColor: '#F73655',
paddingHorizontal: 8,
paddingVertical: 8,
},
row_spaced_evenly: {
display: 'flex',
width: '100%',
justifyContent: 'space-evenly',
flexDirection: 'row',
},
centered_horizontal: {
flex: 1,
alignItems: 'center',
marginHorizontal: 12,
justifyContent: 'center',
},
title_container: {
marginBottom: 8,
alignSelf: 'flex-start',
},
image_container: {
marginBottom: 16,
},
image_dimensions: {
width: '100%',
height: 500,
},
});