UNPKG

968 BJavaScriptView Raw
1import { StyleSheet } from 'react-native';
2export default StyleSheet.create({
3 container: {
4 flex: 1,
5 flexDirection: 'row',
6 alignItems: 'center',
7 justifyContent: 'center'
8 },
9 input: {
10 flex: 1,
11 textAlign: 'center',
12 paddingHorizontal: 8,
13 fontSize: 16,
14 color: '#222'
15 },
16 stepWrap: {
17 width: 28,
18 height: 28,
19 borderWidth: 1,
20 borderColor: '#d9d9d9',
21 borderRadius: 6,
22 backgroundColor: 'white'
23 },
24 stepText: {
25 textAlign: 'center',
26 fontSize: 20,
27 color: '#999',
28 backgroundColor: 'transparent'
29 },
30 stepDisabled: {
31 borderColor: '#d9d9d9',
32 backgroundColor: 'rgba(239, 239, 239, 0.72)'
33 },
34 disabledStepTextColor: {
35 color: '#ccc'
36 },
37 highlightStepTextColor: {
38 color: '#2DB7F5'
39 },
40 highlightStepBorderColor: {
41 borderColor: '#2DB7F5'
42 }
43});
\No newline at end of file