Add padding to create wallet button

This commit is contained in:
IshaVenikar 2024-07-30 16:09:09 +05:30
parent 27a56175a8
commit 98d3a03a12

View File

@ -5,6 +5,7 @@ const styles = StyleSheet.create({
marginTop: 20,
width: 150,
alignSelf: 'center',
marginBottom: 40
},
signLink: {
alignItems: 'flex-end',
@ -259,25 +260,25 @@ const styles = StyleSheet.create({
display: 'flex',
alignItems: 'center',
marginTop: 20,
marginBottom: 20
marginBottom: 20,
},
disconnectSession: {
display: 'flex',
justifyContent: 'center'
justifyContent: 'center',
},
sessionItem: {
paddingLeft: 12,
borderBottomWidth: 0.5
borderBottomWidth: 0.5,
},
sessionsContainer: {
paddingLeft: 12,
borderBottomWidth: 0.5
borderBottomWidth: 0.5,
},
walletConnectUriText: { padding: 10 },
walletConnectLogo: {
width: 24,
height: 15,
margin: 0
margin: 0,
},
selectNetworkText: {
fontWeight: 'bold',
@ -295,11 +296,11 @@ const styles = StyleSheet.create({
padding: 8,
},
linkContainer: {
paddingBottom: 72
paddingBottom: 72,
},
networksButton: {
marginTop: 12,
marginBottom: 20
marginBottom: 20,
}
});