mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-14 09:21:16 -05:00
21 lines
375 B
JavaScript
21 lines
375 B
JavaScript
|
import {StyleSheet, Dimensions} from 'react-native';
|
||
|
|
||
|
const styles=StyleSheet.create({
|
||
|
moreitem: {
|
||
|
backgroundColor:'red',
|
||
|
borderColor:'white',
|
||
|
borderWidth:0.5,
|
||
|
height: Dimensions.get('window').height*0.075,
|
||
|
justifyContent:'center'
|
||
|
},
|
||
|
moretext: {
|
||
|
color:'#eee',
|
||
|
fontSize:20,
|
||
|
},
|
||
|
headerTitle: {
|
||
|
fontWeight:'bold',
|
||
|
fontSize:24
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default styles;
|