2018-05-03 20:58:31 +02:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import Colors from './colors';
|
|
|
|
|
|
|
|
const transactionListStyle = StyleSheet.create({
|
|
|
|
listItem: {
|
|
|
|
borderBottomWidth: 1,
|
|
|
|
borderBottomColor: '#eeeeee',
|
|
|
|
paddingLeft: 16,
|
|
|
|
paddingRight: 16,
|
|
|
|
paddingTop: 12,
|
|
|
|
paddingBottom: 12
|
|
|
|
},
|
|
|
|
row: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'space-between'
|
|
|
|
},
|
|
|
|
topRow: {
|
|
|
|
marginBottom: 4
|
|
|
|
},
|
|
|
|
col: {
|
|
|
|
alignSelf: 'stretch'
|
|
|
|
},
|
|
|
|
text: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-05-03 20:58:31 +02:00
|
|
|
fontSize: 14
|
|
|
|
},
|
2018-05-10 19:38:07 +02:00
|
|
|
link: {
|
|
|
|
color: Colors.LbryGreen,
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-05-10 19:38:07 +02:00
|
|
|
fontSize: 14
|
|
|
|
},
|
2018-05-03 20:58:31 +02:00
|
|
|
amount: {
|
|
|
|
textAlign: 'right'
|
|
|
|
},
|
|
|
|
smallText: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-05-03 20:58:31 +02:00
|
|
|
fontSize: 12,
|
|
|
|
color: '#aaaaaa'
|
|
|
|
},
|
2018-05-10 19:38:07 +02:00
|
|
|
smallLink: {
|
|
|
|
color: Colors.LbryGreen,
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-05-10 19:38:07 +02:00
|
|
|
fontSize: 12
|
|
|
|
},
|
2018-05-03 20:58:31 +02:00
|
|
|
noTransactions: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-05-03 20:58:31 +02:00
|
|
|
textAlign: 'center',
|
|
|
|
padding: 16,
|
|
|
|
color: '#aaaaaa'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default transactionListStyle;
|