2018-05-25 00:47:55 +02:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import Colors from './colors';
|
|
|
|
|
|
|
|
const channelPageStyle = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
},
|
|
|
|
content: {
|
|
|
|
flex: 1
|
|
|
|
},
|
2018-05-25 20:52:08 +02:00
|
|
|
fileList: {
|
|
|
|
paddingTop: 30,
|
2018-05-26 01:20:44 +02:00
|
|
|
flex: 1,
|
|
|
|
marginBottom: 60
|
2018-05-25 20:52:08 +02:00
|
|
|
},
|
2018-05-25 00:47:55 +02:00
|
|
|
title: {
|
|
|
|
color: Colors.LbryGreen,
|
|
|
|
fontFamily: 'Metropolis-SemiBold',
|
|
|
|
fontSize: 30,
|
|
|
|
margin: 16
|
2018-05-25 20:52:08 +02:00
|
|
|
},
|
|
|
|
busyContainer: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
flexDirection: 'row'
|
|
|
|
},
|
|
|
|
infoText: {
|
|
|
|
fontFamily: 'Metropolis-Regular',
|
|
|
|
fontSize: 20,
|
|
|
|
textAlign: 'center',
|
|
|
|
marginLeft: 10
|
2018-05-25 00:47:55 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default channelPageStyle;
|