You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
968 B
43 lines
968 B
import { StyleSheet } from 'react-native';
|
|
export default StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'center'
|
|
},
|
|
input: {
|
|
flex: 1,
|
|
textAlign: 'center',
|
|
paddingHorizontal: 8,
|
|
fontSize: 16,
|
|
color: '#222'
|
|
},
|
|
stepWrap: {
|
|
width: 28,
|
|
height: 28,
|
|
borderWidth: 1,
|
|
borderColor: '#d9d9d9',
|
|
borderRadius: 6,
|
|
backgroundColor: 'white'
|
|
},
|
|
stepText: {
|
|
textAlign: 'center',
|
|
fontSize: 20,
|
|
color: '#999',
|
|
backgroundColor: 'transparent'
|
|
},
|
|
stepDisabled: {
|
|
borderColor: '#d9d9d9',
|
|
backgroundColor: 'rgba(239, 239, 239, 0.72)'
|
|
},
|
|
disabledStepTextColor: {
|
|
color: '#ccc'
|
|
},
|
|
highlightStepTextColor: {
|
|
color: '#2DB7F5'
|
|
},
|
|
highlightStepBorderColor: {
|
|
borderColor: '#2DB7F5'
|
|
}
|
|
}); |