lbry-android-sdk/app/src/styles/channelPage.js

57 lines
1 KiB
JavaScript
Raw Normal View History

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
},
fileList: {
flex: 1,
2019-03-01 19:25:16 +01:00
paddingTop: 30
},
fileListContent: {
paddingBottom: 16
},
2018-05-25 00:47:55 +02:00
title: {
color: Colors.LbryGreen,
fontFamily: 'Inter-UI-SemiBold',
2018-05-25 00:47:55 +02:00
fontSize: 30,
margin: 16
},
busyContainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'row'
},
infoText: {
fontFamily: 'Inter-UI-Regular',
fontSize: 20,
textAlign: 'center',
marginLeft: 10
},
pageButtons: {
width: '100%',
flexDirection: 'row',
justifyContent: 'space-between',
position: 'absolute',
bottom: 76,
paddingLeft: 16,
paddingRight: 16
},
button: {
backgroundColor: Colors.LbryGreen,
paddingLeft: 16,
paddingRight: 16
},
nextButton: {
alignSelf: 'flex-end'
2018-05-25 00:47:55 +02:00
}
});
export default channelPageStyle;