-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.js
56 lines (49 loc) · 952 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
46
47
48
49
50
51
52
53
54
55
56
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
dropbtn: {
backgroundColor: '#f6f7f9',
height: 50,
width: '100%',
justifyContent: 'center',
alignItems: 'center',
borderRadius: 5,
borderWidth: 1,
borderColor: '#cad1d8'
},
dropbtnActive: {
borderColor: '#88bfff',
borderBottomLeftRadius: 0,
borderBottomRightRadius: 0,
borderBottomWidth: 0
},
dropbtnText: {
fontWeight: '200',
color: '#4f6278',
fontSize: 16
},
dropdown: {
position: 'relative',
zIndex: 1
},
dropdownContent: {
position: 'absolute',
top: 50,
borderWidth: 1,
borderColor: '#88bfff',
borderTopWidth: 0,
borderBottomLeftRadius: 5,
borderBottomRightRadius: 5,
backgroundColor: 'white',
width: '100%'
},
dropbtnItem: {
borderBottomWidth: 1,
borderBottomColor: '#cad1d8',
height: 50,
justifyContent: 'center',
alignItems: 'center'
},
dropbtnItemLast: {
borderBottomWidth: 0
}
});