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.
23 lines
488 B
23 lines
488 B
import { StyleSheet } from 'react-native';
|
|
|
|
export default StyleSheet.create({
|
|
text: {
|
|
fontSize: 16,
|
|
lineHeight: 21,
|
|
fontWeight: 'bold',
|
|
letterSpacing: 0.25,
|
|
color: 'white',
|
|
},
|
|
footer: {
|
|
flex: 0.15,
|
|
flexDirection: 'row',
|
|
backgroundColor: '#2D2C33',
|
|
width: '100%',
|
|
justifyContent: 'space-evenly',
|
|
alignItems: 'center',
|
|
},
|
|
icon: {
|
|
width: 65,
|
|
height: 65,
|
|
},
|
|
}); |