45 lines
812 B
JavaScript
45 lines
812 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
import Colors from './colors';
|
|
|
|
const downloadsStyle = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: Colors.PageBackground,
|
|
},
|
|
busyContainer: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
flexDirection: 'row',
|
|
},
|
|
subContainer: {
|
|
flex: 1,
|
|
marginTop: 60,
|
|
},
|
|
itemList: {
|
|
flex: 1,
|
|
},
|
|
scrollContainer: {
|
|
flex: 1,
|
|
paddingLeft: 16,
|
|
paddingRight: 16,
|
|
marginTop: 16,
|
|
marginBottom: 60,
|
|
},
|
|
scrollPadding: {
|
|
marginTop: -16,
|
|
paddingBottom: 16,
|
|
},
|
|
noDownloadsText: {
|
|
fontFamily: 'Inter-UI-Regular',
|
|
fontSize: 16,
|
|
lineHeight: 24,
|
|
marginLeft: 16,
|
|
marginRight: 16,
|
|
},
|
|
loading: {
|
|
position: 'absolute',
|
|
},
|
|
});
|
|
|
|
export default downloadsStyle;
|