UNPKG

1.11 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _reactNative = require('react-native');
8
9exports['default'] = _reactNative.StyleSheet.create({
10 container: {
11 flex: 1,
12 flexDirection: 'row',
13 alignItems: 'center',
14 justifyContent: 'center'
15 },
16 input: {
17 flex: 1,
18 textAlign: 'center',
19 paddingHorizontal: 8,
20 fontSize: 16,
21 color: '#222'
22 },
23 stepWrap: {
24 width: 28,
25 height: 28,
26 borderWidth: 1,
27 borderColor: '#d9d9d9',
28 borderRadius: 6,
29 backgroundColor: 'white'
30 },
31 stepText: {
32 textAlign: 'center',
33 fontSize: 20,
34 color: '#999',
35 backgroundColor: 'transparent'
36 },
37 stepDisabled: {
38 borderColor: '#d9d9d9',
39 backgroundColor: 'rgba(239, 239, 239, 0.72)'
40 },
41 disabledStepTextColor: {
42 color: '#ccc'
43 },
44 highlightStepTextColor: {
45 color: '#2DB7F5'
46 },
47 highlightStepBorderColor: {
48 borderColor: '#2DB7F5'
49 }
50});
51module.exports = exports['default'];
\No newline at end of file