forked from M-Izadmehr/react-native-multiple-picker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.js
More file actions
28 lines (25 loc) · 647 Bytes
/
style.js
File metadata and controls
28 lines (25 loc) · 647 Bytes
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
'use strict';
import {StyleSheet, Dimensions} from 'react-native';
const { width} = Dimensions.get('window');
export default StyleSheet.create({
cancelStyle: {
borderRadius: 15,
width: width * 0.1,
height: width * 0.1,
elevation:10,
backgroundColor: '#ff3e0abb',
alignItems:'center',
alignContent:'center',
margin:10,
},
acceptStyle: {
borderRadius: 15,
width: width * 0.1,
height: width * 0.1,
elevation:10,
backgroundColor: '#81e200aa',
alignItems:'center',
alignContent:'center',
margin:10,
},
});