mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-09-02 18:15:11 +00:00
171 lines
3.1 KiB
JavaScript
171 lines
3.1 KiB
JavaScript
import { StyleSheet } from 'react-native';
|
|
import Colors from './colors';
|
|
|
|
const walletStyle = StyleSheet.create({
|
|
row: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center'
|
|
},
|
|
amountRow: {
|
|
flexDirection: 'row'
|
|
},
|
|
address: {
|
|
fontFamily: 'Inter-UI-Regular',
|
|
borderWidth: 1,
|
|
borderStyle: 'dashed',
|
|
borderColor: '#cccccc',
|
|
backgroundColor: '#f9f9f9',
|
|
padding: 8,
|
|
width: '85%'
|
|
},
|
|
button: {
|
|
backgroundColor: Colors.LbryGreen,
|
|
alignSelf: 'flex-start'
|
|
},
|
|
historyList: {
|
|
backgroundColor: '#ffffff'
|
|
},
|
|
card: {
|
|
backgroundColor: '#ffffff',
|
|
marginTop: 16,
|
|
marginLeft: 16,
|
|
marginRight: 16,
|
|
padding: 16
|
|
},
|
|
warningCard: {
|
|
backgroundColor: Colors.Orange,
|
|
padding: 16,
|
|
marginLeft: 16,
|
|
marginTop: 76,
|
|
marginRight: 16
|
|
},
|
|
transactionsCard: {
|
|
backgroundColor: '#ffffff',
|
|
margin: 16
|
|
},
|
|
title: {
|
|
fontFamily: 'Inter-UI-Bold',
|
|
fontSize: 20,
|
|
marginBottom: 24
|
|
},
|
|
transactionsTitle: {
|
|
fontFamily: 'Inter-UI-Bold',
|
|
fontSize: 20
|
|
},
|
|
transactionsHeader: {
|
|
paddingTop: 12,
|
|
paddingBottom: 12,
|
|
paddingLeft: 16,
|
|
paddingRight: 16,
|
|
borderBottomWidth: 1,
|
|
borderBottomColor: '#eeeeee'
|
|
},
|
|
text: {
|
|
fontFamily: 'Inter-UI-Regular',
|
|
fontSize: 14
|
|
},
|
|
link: {
|
|
color: Colors.LbryGreen,
|
|
fontFamily: 'Inter-UI-Regular',
|
|
fontSize: 14
|
|
},
|
|
smallText: {
|
|
fontFamily: 'Inter-UI-Regular',
|
|
fontSize: 12
|
|
},
|
|
balanceCard: {
|
|
marginTop: 16,
|
|
marginLeft: 16,
|
|
marginRight: 16
|
|
},
|
|
balanceBackground: {
|
|
position: 'absolute',
|
|
alignSelf: 'stretch',
|
|
width: '100%',
|
|
height: '100%',
|
|
},
|
|
balanceTitle: {
|
|
color: '#ffffff',
|
|
fontFamily: 'Inter-UI-Bold',
|
|
fontSize: 18,
|
|
marginLeft: 16,
|
|
marginTop: 16
|
|
},
|
|
balanceCaption: {
|
|
color: '#caedB9',
|
|
fontFamily: 'Inter-UI-Medium',
|
|
fontSize: 14,
|
|
marginLeft: 16,
|
|
marginTop: 8,
|
|
marginBottom: 96
|
|
},
|
|
balance: {
|
|
color: '#ffffff',
|
|
fontFamily: 'Inter-UI-Bold',
|
|
fontSize: 36,
|
|
marginLeft: 16,
|
|
marginBottom: 16
|
|
},
|
|
infoText: {
|
|
color: '#aaaaaa',
|
|
fontFamily: 'Inter-UI-Regular',
|
|
fontSize: 14,
|
|
padding: 16,
|
|
textAlign: 'center'
|
|
},
|
|
input: {
|
|
fontFamily: 'Inter-UI-Regular',
|
|
fontSize: 14
|
|
},
|
|
amountInput: {
|
|
alignSelf: 'flex-start',
|
|
width: 100,
|
|
fontSize: 16,
|
|
letterSpacing: 1
|
|
},
|
|
addressInput: {
|
|
flex: 1,
|
|
fontSize: 16,
|
|
letterSpacing: 1.5
|
|
},
|
|
warning: {
|
|
backgroundColor: Colors.Orange,
|
|
padding: 16,
|
|
margin: 16,
|
|
marginTop: 76
|
|
},
|
|
warningText: {
|
|
color: Colors.White,
|
|
fontFamily: 'Inter-UI-Regular',
|
|
fontSize: 16,
|
|
lineHeight: 24
|
|
},
|
|
understand: {
|
|
marginLeft: 16,
|
|
padding: 12,
|
|
paddingLeft: 18,
|
|
paddingRight: 18
|
|
},
|
|
currency: {
|
|
alignSelf: 'flex-start',
|
|
marginTop: 17
|
|
},
|
|
sendButton: {
|
|
marginTop: 8
|
|
},
|
|
bottomMarginSmall: {
|
|
marginBottom: 8
|
|
},
|
|
bottomMarginMedium: {
|
|
marginBottom: 16
|
|
},
|
|
bottomMarginLarge: {
|
|
marginBottom: 24
|
|
},
|
|
transactionHistoryScroll: {
|
|
marginTop: 60
|
|
}
|
|
});
|
|
|
|
export default walletStyle;
|