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.
25 lines
491 B
25 lines
491 B
import { StyleSheet} from 'react-native';
|
|
|
|
export default StyleSheet.create({
|
|
runInfoWrapper: {
|
|
backgroundColor: 'rgba(255,255,255,1)',
|
|
paddingVertical: 15
|
|
},
|
|
runInfoTitle: {
|
|
textAlign: 'center',
|
|
fontWeight: '700',
|
|
color: '#666'
|
|
|
|
},
|
|
runInfoValue: {
|
|
textAlign: 'center',
|
|
fontSize: 24,
|
|
fontWeight: '100',
|
|
paddingVertical: 5
|
|
|
|
},
|
|
new: {
|
|
textAlign: 'center',
|
|
fontSize: 16
|
|
}
|
|
}) |