mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-13 17:01:16 -05:00
27 lines
481 B
JavaScript
27 lines
481 B
JavaScript
import {StyleSheet, StatusBar} from 'react-native';
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
marginTop: StatusBar.currentHeight || 0,
|
|
},
|
|
item: {
|
|
backgroundColor: '#bababa',
|
|
padding: 20,
|
|
marginVertical: 8,
|
|
marginHorizontal: 16,
|
|
borderRadius: 16,
|
|
},
|
|
title: {
|
|
fontSize: 32,
|
|
},
|
|
date: {
|
|
fontSize:12,
|
|
marginBottom:'-3%',
|
|
alignSelf:'flex-end',
|
|
marginTop:'-3%',
|
|
marginRight:'-3%'
|
|
}
|
|
});
|
|
|
|
export default styles; |